Skip to content

Commit 0e77f02

Browse files
authored
Merge pull request #50 from Techainer/parallel
Fix starlette: from typing_extensions import ParamSpec
2 parents 5c00860 + 8d16987 commit 0e77f02

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

mlchain/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
)
88

99
# Parameters of MLchain
10-
__version__ = "0.2.5"
10+
__version__ = "0.2.6"
1111

1212
HOST = "https://www.api.mlchain.ml"
1313
WEB_HOST = HOST

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ numpy<1.20; python_version == '3.6'
1414
numpy<=1.20.3; python_version >= '3.7'
1515
opencv-python>=4.1.2.30, <4.5
1616
Pillow>=8.0.1
17-
starlette[full]>=0.14.2
17+
starlette[full]==0.19.0
1818
requests>=2.25.1
1919
six>=1.13.0
2020
toml>=0.10.0
2121
trio>=0.19.0
2222
urllib3>=1.26.2
23-
uvicorn[standard]>=0.14.0
23+
uvicorn[standard]==0.17.6
2424
uvloop==0.14.0; sys_platform != 'win32' and python_version == '3.6'
2525
uvloop>=0.14.0; sys_platform != 'win32' and python_version >= '3.7'
2626
Werkzeug==1.0.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import pathlib
55
import os
66
from setuptools import setup, find_packages
7-
__version__ = "0.2.5"
87

8+
__version__ = "0.2.6"
99

1010
project = "mlchain"
1111

0 commit comments

Comments
 (0)