File tree Expand file tree Collapse file tree 4 files changed +14
-19
lines changed
Expand file tree Collapse file tree 4 files changed +14
-19
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ jobs:
4040 - name : Install dependencies for Unix
4141 if : ${{ matrix.os != 'windows-latest' }}
4242 run : |
43- pip3 install -U scikit-build
44- pip3 install -U awscli pip pytest coverage codecov
43+ python3 -m pip install -U scikit-build
44+ python3 -m pip install -U awscli pip pytest coverage codecov setuptools
4545
4646 - name : Install dependencies for Windows
4747 if : ${{ matrix.os == 'windows-latest' }}
4848 run : |
49- pip3 install -U scikit-build --user
50- pip3 install -U awscli pip pytest coverage codecov --user
49+ python3 -m pip install -U scikit-build --user
50+ python3 -m pip install -U awscli pip pytest coverage codecov --user
5151
5252 - name : Build and install
5353 run : python3 setup.py install
Original file line number Diff line number Diff line change 77)
88
99# Parameters of MLchain
10- __version__ = "0.2.7 "
10+ __version__ = "0.2.8 "
1111
1212HOST = "https://www.api.mlchain.ml"
1313WEB_HOST = HOST
Original file line number Diff line number Diff line change 11attrs >= 20.3.0
2- blosc >= 1.10.4 ; sys_platform != 'win32'
3- Click == 7.1.2
4- itsdangerous == 1.1.0
2+ blosc == 1.10.6 ; sys_platform != 'win32'
53h11 == 0.12.0
6- Flask == 1.1.4
7- Flask-Cors >= 3.0.9
8- gunicorn >= 20.1.0
9- gevent >= 21.8.0
10- MarkupSafe == 2.0.1
11- Jinja2 == 2.11.3
4+ Flask == 2.1.0
5+ Flask-Cors == 3.0.10
6+ gunicorn == 20.1.0
7+ gevent == 21.12.0
128msgpack == 1.0.3
139numpy < 1.20 ; python_version == '3.6'
1410numpy <= 1.20.3 ; python_version >= '3.7'
@@ -18,18 +14,17 @@ starlette[full]==0.19.0
1814requests >= 2.25.1
1915six >= 1.13.0
2016toml >= 0.10.0
21- trio >= 0.19 .0
17+ trio == 0.20 .0
2218urllib3 >= 1.26.2
2319uvicorn [standard ]== 0.17.6
2420uvloop == 0.14.0 ; sys_platform != 'win32' and python_version == '3.6'
25- uvloop >= 0.14.0 ; sys_platform != 'win32' and python_version >= '3.7'
26- Werkzeug == 1.0.1
21+ uvloop >= 0.16.0 ; sys_platform != 'win32' and python_version >= '3.7'
2722httpx == 0.22.0
2823grpcio
2924protobuf >= 3.10.0
3025boto3 >= 1.16.43
3126pyyaml >= 5.3.1
32- sentry-sdk [flask ]>= 1.5.7
27+ sentry-sdk [flask ]>= 1.5.8
3328thefuzz
3429GPUtil >= 1.4.0
3530tqdm
Original file line number Diff line number Diff line change 55import os
66from setuptools import setup , find_packages
77
8- __version__ = "0.2.7 "
8+ __version__ = "0.2.8 "
99
1010project = "mlchain"
1111
You can’t perform that action at this time.
0 commit comments