Skip to content

Commit 7fd83af

Browse files
authored
Version 1.1 (#158)
* `CHANGELOG.md` updated * update pymilo version * update pymilo version * update pymilo version * update pymilo version * update pymilo version * update pymilo version * update pymilo version
1 parent 4309d9a commit 7fd83af

File tree

8 files changed

+19
-12
lines changed

8 files changed

+19
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ body:
8686
label: PyMilo version
8787
description: Which version of PyMilo are you using?
8888
options:
89+
- PyMilo 1.1
8990
- PyMilo 1.0
9091
- PyMilo 0.9
9192
- PyMilo 0.8

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [1.1] - 2024-11-25
88
### Added
99
- `is_socket_closed` function in `streaming.communicator.py`
1010
- `validate_http_url` function in `streaming.util.py`
@@ -346,7 +346,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
346346
- `Export` class
347347
- `Import` class
348348

349-
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.0...dev
349+
[Unreleased]: https://github.com/openscilab/pymilo/compare/v1.1...dev
350+
[1.1]: https://github.com/openscilab/pymilo/compare/v1.0...v1.1
350351
[1.0]: https://github.com/openscilab/pymilo/compare/v0.9...v1.0
351352
[0.9]: https://github.com/openscilab/pymilo/compare/v0.8...v0.9
352353
[0.8]: https://github.com/openscilab/pymilo/compare/v0.7...v0.8

README.md

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

6767
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
68-
- Run `pip install pymilo==1.0`
68+
- Run `pip install pymilo==1.1`
6969
### Source code
70-
- Download [Version 1.0](https://github.com/openscilab/pymilo/archive/v1.0.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
70+
- Download [Version 1.1](https://github.com/openscilab/pymilo/archive/v1.1.zip) or [Latest Source](https://github.com/openscilab/pymilo/archive/dev.zip)
7171
- Run `pip install .`
7272

7373
### Conda
@@ -243,7 +243,7 @@ You can also join our discord server
243243

244244
## Acknowledgments
245245

246-
[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.
246+
[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.
247247

248248
<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>
249249

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 1.0 | :white_check_mark: |
8-
| < 1.0 | :x: |
7+
| 1.1 | :white_check_mark: |
8+
| < 1.1 | :x: |
99

1010
## Reporting a vulnerability
1111

otherfiles/meta.yaml

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

44
package:
55
name: {{ name|lower }}
@@ -22,6 +22,11 @@ requirements:
2222
- scikit-learn >=0.22.2
2323
- scipy >=0.19.1
2424
- requests>=2.0.0
25+
- uvicorn>=0.14.0
26+
- fastapi>=0.68.0
27+
- pydantic>=1.5.0
28+
- websockets>=9.0
29+
2530
about:
2631
home: https://github.com/openscilab/pymilo
2732
license: MIT

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 = "1.0"
7+
PYMILO_VERSION = "1.1"
88

99

1010
SETUP_ITEMS = [

pymilo/pymilo_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
pass
8484

8585

86-
PYMILO_VERSION = "1.0"
86+
PYMILO_VERSION = "1.1"
8787
NOT_SUPPORTED = "NOT_SUPPORTED"
8888
PYMILO_VERSION_DOES_NOT_EXIST = "Corrupted JSON file, `pymilo_version` doesn't exist in this file."
8989
UNEQUAL_PYMILO_VERSIONS = "warning: Installed PyMilo version differs from the PyMilo version used to create the JSON file."

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def read_description():
3535
setup(
3636
name='pymilo',
3737
packages=find_packages(include=['pymilo*'], exclude=['tests*']),
38-
version='1.0',
38+
version='1.1',
3939
description='Transportation of ML models',
4040
long_description=read_description(),
4141
long_description_content_type='text/markdown',
4242
author='PyMilo Development Team',
4343
author_email='pymilo@openscilab.com',
4444
url='https://github.com/openscilab/pymilo',
45-
download_url='https://github.com/openscilab/pymilo/tarball/v1.0',
45+
download_url='https://github.com/openscilab/pymilo/tarball/v1.1',
4646
keywords="python3 python machine_learning ML",
4747
project_urls={
4848
'Source': 'https://github.com/openscilab/pymilo',

0 commit comments

Comments
 (0)