Skip to content

Commit

Permalink
Merge pull request #50 from Techainer/parallel
Browse files Browse the repository at this point in the history
Fix starlette: from typing_extensions import ParamSpec
  • Loading branch information
meocong committed Mar 14, 2022
2 parents 5c00860 + 8d16987 commit 0e77f02
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.5"
__version__ = "0.2.6"

HOST = "https://www.api.mlchain.ml"
WEB_HOST = HOST
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ numpy<1.20; python_version == '3.6'
numpy<=1.20.3; python_version >= '3.7'
opencv-python>=4.1.2.30, <4.5
Pillow>=8.0.1
starlette[full]>=0.14.2
starlette[full]==0.19.0
requests>=2.25.1
six>=1.13.0
toml>=0.10.0
trio>=0.19.0
urllib3>=1.26.2
uvicorn[standard]>=0.14.0
uvicorn[standard]==0.17.6
uvloop==0.14.0; sys_platform != 'win32' and python_version == '3.6'
uvloop>=0.14.0; sys_platform != 'win32' and python_version >= '3.7'
Werkzeug==1.0.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import pathlib
import os
from setuptools import setup, find_packages
__version__ = "0.2.5"

__version__ = "0.2.6"

project = "mlchain"

Expand Down

0 comments on commit 0e77f02

Please sign in to comment.