Skip to content

Commit 4933d0b

Browse files
authored
Version 0.6 (#85)
* `CHANGELOG.md` updated * version updated to 0.6 * version updated to 0.6 + svm support added * version updated to 0.6 * version updated to 0.6 * remove `.`
1 parent 86ab5ce commit 4933d0b

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ body:
8585
label: PyMilo version
8686
description: Which version of PyMilo are you using?
8787
options:
88+
- PyMilo 0.6
8889
- PyMilo 0.5
8990
- PyMilo 0.4
9091
- PyMilo 0.3

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88
### Added
9+
### Changed
10+
11+
## [0.6] - 2024-03-27
12+
### Added
913
- `deserialize_primitive_type` function in `GeneralDataStructureTransporter`
1014
- `is_deserialized_ndarray` function in `GeneralDataStructureTransporter`
1115
- `deep_deserialize_ndarray` function in `GeneralDataStructureTransporter`
@@ -20,6 +24,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2024
- SVM models test runner
2125
- SVM chain
2226
### Changed
27+
- `pymilo_param.py` updated
28+
- `pymilo_obj.py` updated to use predefined strings
2329
- `TreeTransporter` updated
2430
- `get_homogeneous_type` function in `util.py` updated
2531
- `GeneralDataStructureTransporter` updated to use deep ndarray serializer & deserializer
@@ -138,7 +144,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
138144
- `Export` class
139145
- `Import` class
140146

141-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.5...dev
147+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.6...dev
148+
[0.6]: https://github.com/openscilab/pymilo/compare/v0.5...v0.6
142149
[0.5]: https://github.com/openscilab/pymilo/compare/v0.4...v0.5
143150
[0.4]: https://github.com/openscilab/pymilo/compare/v0.3...v0.4
144151
[0.3]: https://github.com/openscilab/pymilo/compare/v0.2...v0.3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
8686
### PyPI
8787

8888
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
89-
- Run `pip install pymilo==0.5`
89+
- Run `pip install pymilo==0.6`
9090
### Source code
91-
- Download [Version 0.5](https://github.com/openscilab/pymilo/archive/v0.5.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
91+
- Download [Version 0.6](https://github.com/openscilab/pymilo/archive/v0.6.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
9292
- Run `pip install .`
9393

9494
## Usage
@@ -132,7 +132,7 @@ PyMilo is an open source Python package that provides a simple, efficient, and s
132132
| Trees ✅ | - |
133133
| Clustering ✅ | - |
134134
| Naïve Bayes ✅ | - |
135-
| Support vector machines (SVMs) ❌ | - |
135+
| Support vector machines (SVMs) ✅ | - |
136136
| Nearest Neighbors ❌ | - |
137137
| Ensemble Models ❌ | - |
138138
Details are available in [Supported Models](https://github.com/openscilab/pymilo/blob/main/SUPPORTED_MODELS.md).

otherfiles/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "pymilo" %}
2-
{% set version = "0.5" %}
2+
{% set version = "0.6" %}
33

44
package:
55
name: {{ name|lower }}

otherfiles/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import codecs
66
Failed = 0
7-
PYMILO_VERSION = "0.5"
7+
PYMILO_VERSION = "0.6"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
except BaseException:
8989
pass
9090

91-
PYMILO_VERSION = "0.5"
91+
PYMILO_VERSION = "0.6"
9292
NOT_SUPPORTED = "NOT_SUPPORTED"
9393
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
9494
UNEQUAL_PYMILO_VERSIONS = "warning: Installed Pymilo version differes from pymilo version used to create the JSON file."

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ def read_description():
3434
'pymilo.chains',
3535
'pymilo.transporters',
3636
'pymilo.exceptions'],
37-
version='0.5',
37+
version='0.6',
3838
description='Transportation of ML models',
3939
long_description=read_description(),
4040
long_description_content_type='text/markdown',
4141
author='PyMilo Development Team',
4242
author_email='[email protected]',
4343
url='https://github.com/openscilab/pymilo',
44-
download_url='https://github.com/openscilab/pymilo/tarball/v0.5',
44+
download_url='https://github.com/openscilab/pymilo/tarball/v0.6',
4545
keywords="python3 python machine_learning ML",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)