Skip to content

Commit

Permalink
Version 0.8 (#101)
Browse files Browse the repository at this point in the history
* update version in `CHANGELOG.md`

* update version in `README.md`

* update version in `SECURITY.md`

* update version in `setup.py`

* update version in `bug_report.yml`

* update version in `meta.yml`

* update version in `version_check.py`

* update version in `pymilo_param.py`
  • Loading branch information
AHReccese authored May 4, 2024
1 parent 050c861 commit e415772
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 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.8
- PyMilo 0.7
- PyMilo 0.6
- PyMilo 0.5
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.8] - 2024-05-06
### Added
- `StandardScaler` Transformer in `pymilo_param.py`
- `PreprocessingTransporter` Transporter
- ndarray shape config in `GeneralDataStructure` Transporter
Expand Down Expand Up @@ -215,7 +218,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.7...dev
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.8...dev
[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
[0.5]: https://github.com/openscilab/pymilo/compare/v0.4...v0.5
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,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.7`
- Run `pip install pymilo==0.8`
### Source code
- Download [Version 0.7](https://github.com/openscilab/pymilo/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Download [Version 0.8](https://github.com/openscilab/pymilo/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Run `pip install .`

## Usage
Expand Down Expand Up @@ -114,7 +114,7 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
| Nearest Neighbors ✅ | - |
| Ensemble Models ✅ | - |
| Pipeline Model ✅ | - |
| Preprocessing Models ❌ | - |
| Preprocessing Models | - |

Details are available in [Supported Models](https://github.com/openscilab/pymilo/blob/main/SUPPORTED_MODELS.md).

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.7 | :white_check_mark: |
| < 0.7 | :x: |
| 0.8 | :white_check_mark: |
| < 0.8 | :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.7" %}
{% set version = "0.8" %}

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.7"
PYMILO_VERSION = "0.8"


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 @@ -68,7 +68,7 @@
pass


PYMILO_VERSION = "0.7"
PYMILO_VERSION = "0.8"
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 differes 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.7',
version='0.8',
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.7',
download_url='https://github.com/openscilab/pymilo/tarball/v0.8',
keywords="python3 python machine_learning ML",
project_urls={
'Source': 'https://github.com/openscilab/pymilo',
Expand Down

0 comments on commit e415772

Please sign in to comment.