From 3f9f57ed93787e94a9414d812af8fc7a8edb6404 Mon Sep 17 00:00:00 2001 From: AmirHosein Rostami <32750909+AHReccese@users.noreply.github.com> Date: Tue, 26 Sep 2023 22:07:28 -0800 Subject: [PATCH] Version 0.3 (#34) * update `setup.py` * update README.md pymilo version * update `version_check.py` pymilo version * update `meta.yaml` pymilo version * update pymilo version in `pymilo_param.py` * update compare links, add v0.3 * update tarball version to 0.3 * update `CHANGELOG.md` --- CHANGELOG.md | 4 +++- README.md | 4 ++-- otherfiles/meta.yaml | 2 +- otherfiles/version_check.py | 2 +- pymilo/pymilo_param.py | 2 +- setup.py | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32c48900..5c0fa0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.3] - 2023-09-27 ### Added - scikit-learn decision tree models - `ExtraTreeClassifier` model @@ -47,6 +48,7 @@ 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.2...dev +[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.3...dev +[0.3]: https://github.com/openscilab/pymilo/compare/v0.2...v0.3 [0.2]: https://github.com/openscilab/pymilo/compare/v0.1...v0.2 [0.1]: https://github.com/openscilab/pymilo/compare/e887108...v0.1 \ No newline at end of file diff --git a/README.md b/README.md index 006ba9d1..d31c804c 100644 --- a/README.md +++ b/README.md @@ -78,9 +78,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.2` +- Run `pip install pymilo==0.3` ### Source code -- Download [Version 0.2](https://github.com/openscilab/pymilo/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip) +- Download [Version 0.3](https://github.com/openscilab/pymilo/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip) - Run `pip install .` ## Usage diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index d875cf15..9e9f4a95 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pymilo" %} -{% set version = "0.2" %} +{% set version = "0.3" %} package: name: {{ name|lower }} diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 1b522aa8..d4ce0540 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -PYMILO_VERSION = "0.2" +PYMILO_VERSION = "0.3" SETUP_ITEMS = [ diff --git a/pymilo/pymilo_param.py b/pymilo/pymilo_param.py index c473f588..0a1982ed 100644 --- a/pymilo/pymilo_param.py +++ b/pymilo/pymilo_param.py @@ -49,7 +49,7 @@ from sklearn.preprocessing import LabelBinarizer -PYMILO_VERSION = "0.2" +PYMILO_VERSION = "0.3" NOT_SUPPORTED = "NOT_SUPPORTED" # Handle python 3.5.4 issues. diff --git a/setup.py b/setup.py index f7f19695..143f6f80 100644 --- a/setup.py +++ b/setup.py @@ -34,14 +34,14 @@ def read_description(): 'pymilo.chains', 'pymilo.transporters', 'pymilo.exceptions'], - version='0.2', + version='0.3', description='Transportation of ML models', long_description=read_description(), long_description_content_type='text/markdown', author='PyMilo Development Team', author_email='info@pycm.io', url='https://github.com/openscilab/pymilo', - download_url='https://github.com/openscilab/pymilo/tarball/v0.2', + download_url='https://github.com/openscilab/pymilo/tarball/v0.3', keywords="python3 python machine_learning ML", project_urls={ 'Source': 'https://github.com/openscilab/pymilo',