Skip to content

Commit

Permalink
Version 0.9 (#110)
Browse files Browse the repository at this point in the history
* update pymilo version in `pymilo_param.py`

* update pymilo version in `version_check.py`

* update pymilo version in `meta.yaml`

* update pymilo version in `bug_report.yml`

* update pymilo version in `setup.py`

* update pymilo version in `SECURITY.md`

* update pymilo version in `README.md`

* `CHANGELOG.md` updated

* update pymilo version in `setup.py`
  • Loading branch information
AHReccese authored Jun 28, 2024
1 parent 8874907 commit 1c8f0f7
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
label: PyMilo version
description: Which version of PyMilo are you using?
options:
- PyMilo 0.9
- PyMilo 0.8
- PyMilo 0.7
- PyMilo 0.6
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]
### Added
### Changed
## [0.9] - 2024-07-01
### Added
- Anaconda workflow
- `prefix_list` function in `utils.util.py`
- `KBinsDiscretizer` preprocessing model
Expand Down Expand Up @@ -248,7 +251,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `Export` class
- `Import` class

[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.8...dev
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.9...dev
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9
[0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8
[0.7]: https://github.com/openscilab/pymilo/compare/v0.6...v0.7
[0.6]: https://github.com/openscilab/pymilo/compare/v0.5...v0.6
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
### PyPI

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install pymilo==0.8`
- Run `pip install pymilo==0.9`
### Source code
- Download [Version 0.8](https://github.com/openscilab/pymilo/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Download [Version 0.9](https://github.com/openscilab/pymilo/archive/v0.9.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Run `pip install .`

### Conda
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.8 | :white_check_mark: |
| < 0.8 | :x: |
| 0.9 | :white_check_mark: |
| < 0.9 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pymilo" %}
{% set version = "0.8" %}
{% set version = "0.9" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
PYMILO_VERSION = "0.8"
PYMILO_VERSION = "0.9"


SETUP_ITEMS = [
Expand Down
2 changes: 1 addition & 1 deletion pymilo/pymilo_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
pass


PYMILO_VERSION = "0.8"
PYMILO_VERSION = "0.9"
NOT_SUPPORTED = "NOT_SUPPORTED"
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
UNEQUAL_PYMILO_VERSIONS = "warning: Installed PyMilo version differs from the PyMilo version used to create the JSON file."
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ def read_description():
'pymilo.chains',
'pymilo.transporters',
'pymilo.exceptions'],
version='0.8',
version='0.9',
description='Transportation of ML models',
long_description=read_description(),
long_description_content_type='text/markdown',
author='PyMilo Development Team',
author_email='[email protected]',
url='https://github.com/openscilab/pymilo',
download_url='https://github.com/openscilab/pymilo/tarball/v0.8',
download_url='https://github.com/openscilab/pymilo/tarball/v0.9',
keywords="python3 python machine_learning ML",
project_urls={
'Source': 'https://github.com/openscilab/pymilo',
Expand Down

0 comments on commit 1c8f0f7

Please sign in to comment.