Skip to content

Commit 679a77c

Browse files
authored
Version 0.7 (#87)
* version updated to 0.7 + neighbors support added * `CHANGELOG.md` updated
1 parent 6ea249d commit 679a77c

File tree

7 files changed

+30
-10
lines changed

7 files changed

+30
-10
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.7
8889
- PyMilo 0.6
8990
- PyMilo 0.5
9091
- PyMilo 0.4

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [Unreleased]
88
### Added
99
### Changed
10-
10+
## [0.7] - 2024-04-03
11+
### Added
12+
- `pymilo_nearest_neighbor_test` function added to `test_pymilo.py`
13+
- `NeighborsTreeTransporter` Transporter
14+
- `LocalOutlierFactor` model
15+
- `RadiusNeighborsClassifier` model
16+
- `RadiusNeighborsRegressor` model
17+
- `NearestCentroid` model
18+
- `NearestNeighbors` model
19+
- `KNeighborsClassifier` model
20+
- `KNeighborsRegressor` model
21+
- Neighbors models test runner
22+
- Neighbors chain
23+
### Changed
24+
- Tests config modified
25+
- Neighbors params initialized in `pymilo_param`
26+
- Neighbors support added to `pymilo_func.py`
27+
- `SUPPORTED_MODELS.md` updated
28+
- `README.md` updated
1129
## [0.6] - 2024-03-27
1230
### Added
1331
- `deserialize_primitive_type` function in `GeneralDataStructureTransporter`
@@ -144,7 +162,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
144162
- `Export` class
145163
- `Import` class
146164

147-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.6...dev
165+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.7...dev
166+
[0.7]: https://github.com/openscilab/pymilo/compare/v0.6...v0.7
148167
[0.6]: https://github.com/openscilab/pymilo/compare/v0.5...v0.6
149168
[0.5]: https://github.com/openscilab/pymilo/compare/v0.4...v0.5
150169
[0.4]: https://github.com/openscilab/pymilo/compare/v0.3...v0.4

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.6`
89+
- Run `pip install pymilo==0.7`
9090
### Source code
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)
91+
- Download [Version 0.7](https://github.com/openscilab/pymilo/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
9292
- Run `pip install .`
9393

9494
## Usage
@@ -160,4 +160,4 @@ Give a ⭐️ if this project helped you!
160160
### Donate to our project
161161
If you do like our project and we hope that you do, can you please support us? Our project is not and is never going to be working for profit. We need the money just so we can continue doing what we do ;-) .
162162

163-
<a href="https://openscilab.com/#donation" target="_blank"><img src="https://github.com/openscilab/pymilo/raw/main/otherfiles/donation.png" height="90px" width="270px" alt="PyMilo Donation"></a>
163+
<a href="https://openscilab.com/#donation" target="_blank"><img src="https://github.com/openscilab/pymilo/raw/main/otherfiles/donation.png" height="90px" width="270px" alt="PyMilo Donation"></a>

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.6" %}
2+
{% set version = "0.7" %}
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.6"
7+
PYMILO_VERSION = "0.7"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
except BaseException:
9797
pass
9898

99-
PYMILO_VERSION = "0.6"
99+
PYMILO_VERSION = "0.7"
100100
NOT_SUPPORTED = "NOT_SUPPORTED"
101101
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
102102
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.6',
37+
version='0.7',
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.6',
44+
download_url='https://github.com/openscilab/pymilo/tarball/v0.7',
4545
keywords="python3 python machine_learning ML",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)