Skip to content

Commit

Permalink
Merge pull request #56 from Techainer/no_proto
Browse files Browse the repository at this point in the history
Improve numpy version
  • Loading branch information
duonglong289 committed Jun 9, 2022
2 parents 37e6953 + 8a7b637 commit a52cf88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mlchain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)

# Parameters of MLchain
__version__ = "0.2.9"
__version__ = "0.3.0"

HOST = "https://www.api.mlchain.ml"
WEB_HOST = HOST
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ gunicorn==20.1.0
gevent==21.12.0
msgpack==1.0.4
numpy<1.20; python_version == '3.6'
numpy<=1.20.3; python_version >= '3.7'
numpy<=1.21.6; python_version <= '3.7'
numpy<=1.22.4; python_version > '3.7'
opencv-python>=4.5.1
Pillow>=8.0.1
starlette[full]==0.20.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
from setuptools import setup, find_packages

__version__ = "0.2.9"
__version__ = "0.3.0"

project = "mlchain"

Expand Down

0 comments on commit a52cf88

Please sign in to comment.