Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 1.1 #158

Merged
merged 8 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ body:
label: PyMilo version
description: Which version of PyMilo are you using?
options:
- PyMilo 1.1
- PyMilo 1.0
- PyMilo 0.9
- PyMilo 0.8
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
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]
## [1.1] - 2024-11-25
### Added
- `is_socket_closed` function in `streaming.communicator.py`
- `validate_http_url` function in `streaming.util.py`
Expand Down Expand Up @@ -346,7 +346,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/v1.0...dev
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.1...dev
[1.1]: https://github.com/openscilab/pymilo/compare/v1.0...v1.1
[1.0]: https://github.com/openscilab/pymilo/compare/v0.9...v1.0
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9
[0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,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==1.0`
- Run `pip install pymilo==1.1`
### Source code
- Download [Version 1.0](https://github.com/openscilab/pymilo/archive/v1.0.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Download [Version 1.1](https://github.com/openscilab/pymilo/archive/v1.1.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
- Run `pip install .`

### Conda
Expand Down Expand Up @@ -243,7 +243,7 @@ You can also join our discord server

## Acknowledgments

[Python Software Foundation (PSF)](https://www.python.org/psf/) grants PyMilo library partially for version **1.0**. [PSF](https://www.python.org/psf/) is the organization behind Python. Their mission is to promote, protect, and advance the Python programming language and to support and facilitate the growth of a diverse and international community of Python programmers.
[Python Software Foundation (PSF)](https://www.python.org/psf/) grants PyMilo library partially for versions **1.0, 1.1**. [PSF](https://www.python.org/psf/) is the organization behind Python. Their mission is to promote, protect, and advance the Python programming language and to support and facilitate the growth of a diverse and international community of Python programmers.

<a href="https://www.python.org/psf/"><img src="https://github.com/openscilab/pymilo/raw/main/otherfiles/psf.png" height="65px" alt="Python Software Foundation"></a>

Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 1.0 | :white_check_mark: |
| < 1.0 | :x: |
| 1.1 | :white_check_mark: |
| < 1.1 | :x: |

## Reporting a vulnerability

Expand Down
7 changes: 6 additions & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pymilo" %}
{% set version = "1.0" %}
{% set version = "1.1" %}

package:
name: {{ name|lower }}
Expand All @@ -22,6 +22,11 @@ requirements:
- scikit-learn >=0.22.2
- scipy >=0.19.1
- requests>=2.0.0
- uvicorn>=0.14.0
- fastapi>=0.68.0
- pydantic>=1.5.0
- websockets>=9.0

about:
home: https://github.com/openscilab/pymilo
license: MIT
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 = "1.0"
PYMILO_VERSION = "1.1"


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 @@ -83,7 +83,7 @@
pass


PYMILO_VERSION = "1.0"
PYMILO_VERSION = "1.1"
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 differs from the 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 @@ -35,14 +35,14 @@ def read_description():
setup(
name='pymilo',
packages=find_packages(include=['pymilo*'], exclude=['tests*']),
version='1.0',
version='1.1',
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/v1.0',
download_url='https://github.com/openscilab/pymilo/tarball/v1.1',
keywords="python3 python machine_learning ML",
project_urls={
'Source': 'https://github.com/openscilab/pymilo',
Expand Down
Loading