Skip to content

Commit

Permalink
Version 0.7 (#87)
Browse files Browse the repository at this point in the history
* version updated to 0.7 + neighbors support added

* `CHANGELOG.md` updated
  • Loading branch information
AHReccese authored Mar 31, 2024
1 parent 6ea249d commit 679a77c
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 10 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.7
- PyMilo 0.6
- PyMilo 0.5
- PyMilo 0.4
Expand Down
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
### Added
### Changed

## [0.7] - 2024-04-03
### Added
- `pymilo_nearest_neighbor_test` function added to `test_pymilo.py`
- `NeighborsTreeTransporter` Transporter
- `LocalOutlierFactor` model
- `RadiusNeighborsClassifier` model
- `RadiusNeighborsRegressor` model
- `NearestCentroid` model
- `NearestNeighbors` model
- `KNeighborsClassifier` model
- `KNeighborsRegressor` model
- Neighbors models test runner
- Neighbors chain
### Changed
- Tests config modified
- Neighbors params initialized in `pymilo_param`
- Neighbors support added to `pymilo_func.py`
- `SUPPORTED_MODELS.md` updated
- `README.md` updated
## [0.6] - 2024-03-27
### Added
- `deserialize_primitive_type` function in `GeneralDataStructureTransporter`
Expand Down Expand Up @@ -144,7 +162,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.6...dev
[Unreleased]: https://github.com/openscilab/pymilo/compare/v0.7...dev
[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
[0.4]: https://github.com/openscilab/pymilo/compare/v0.3...v0.4
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,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.6`
- Run `pip install pymilo==0.7`
### Source code
- Download [Version 0.6](https://github.com/openscilab/pymilo/archive/v0.6.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Download [Version 0.7](https://github.com/openscilab/pymilo/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Run `pip install .`

## Usage
Expand Down Expand Up @@ -160,4 +160,4 @@ Give a ⭐️ if this project helped you!
### Donate to our project
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 ;-) .

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

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


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 @@ -96,7 +96,7 @@
except BaseException:
pass

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

0 comments on commit 679a77c

Please sign in to comment.