Skip to content

Commit

Permalink
Version 0.3 (#34)
Browse files Browse the repository at this point in the history
* 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`
  • Loading branch information
AHReccese authored Sep 27, 2023
1 parent 37b3117 commit 3f9f57e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2" %}
{% set version = "0.3" %}

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


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 @@ -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.
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.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='[email protected]',
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',
Expand Down

0 comments on commit 3f9f57e

Please sign in to comment.