Skip to content

Commit 426cf6f

Browse files
committed
resolve for windows dependencies
1 parent 17eacea commit 426cf6f

File tree

4 files changed

+119
-73
lines changed

4 files changed

+119
-73
lines changed

Pipfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,19 @@ pytest-cov = "*"
2121
[packages]
2222
aiohttp = "*"
2323
asyncache = "*"
24+
atomicwrites = {version="*", sys_platform="== 'win32'"} # indirect dep
2425
cachetools = "*"
26+
colorama = {version="*", sys_platform="== 'win32'"} # indirect dep
2527
dataclasses = {version="*", markers="python_version<'3.7'"}
2628
fastapi = "*"
2729
gunicorn = "*"
30+
httptools = {version="*", sys_platform="!= 'win32'"} # indirect dep
2831
idna_ssl = {version="*", markers="python_version<'3.7'"}
2932
python-dateutil = "*"
3033
python-dotenv = "*"
3134
requests = "*"
3235
uvicorn = "*"
36+
uvloop = {version="*", sys_platform="!= 'win32'"} # indirect dep
3337

3438
[requires]
3539
python_version = "3.8"

Pipfile.lock

Lines changed: 97 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements-dev.txt

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ astroid==2.3.3
44
async-asgi-testclient==1.4.4
55
async-generator==1.10
66
asyncmock==0.4.2
7+
atomicwrites==1.3.0 ; sys_platform == 'win32'
78
attrs==19.3.0
89
bandit==1.6.2
910
black==19.10b0
10-
certifi==2019.11.28
11+
certifi==2020.4.5.1
1112
chardet==3.0.4
1213
click==7.1.1
14+
colorama==0.4.3 ; sys_platform == 'win32'
1315
coverage==5.0.4
14-
coveralls==1.11.1
16+
coveralls==2.0.0
1517
docopt==0.6.2
16-
gitdb==4.0.2
17-
gitpython==3.1.0
18+
gitdb==4.0.4
19+
gitpython==3.1.1
1820
idna==2.9
1921
importlib-metadata==1.6.0 ; python_version < '3.8'
2022
invoke==1.4.1
@@ -25,20 +27,20 @@ mock==4.0.2
2527
more-itertools==8.2.0
2628
multidict==4.7.5
2729
packaging==20.3
28-
pathspec==0.7.0
29-
pbr==5.4.4
30+
pathspec==0.8.0
31+
pbr==5.4.5
3032
pluggy==0.13.1
3133
py==1.8.1
3234
pylint==2.4.4
33-
pyparsing==2.4.6
35+
pyparsing==2.4.7
3436
pytest-asyncio==0.10.0
3537
pytest-cov==2.8.1
3638
pytest==5.4.1
3739
pyyaml==5.3.1
38-
regex==2020.2.20
40+
regex==2020.4.4
3941
requests==2.23.0
4042
six==1.14.0
41-
smmap==3.0.1
43+
smmap==3.0.2
4244
stevedore==1.32.0
4345
toml==0.10.0
4446
typed-ast==1.4.1

requirements.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22
aiohttp==3.6.2
33
async-timeout==3.0.1
44
asyncache==0.1.1
5+
atomicwrites==1.3.0 ; sys_platform == 'win32'
56
attrs==19.3.0
6-
cachetools==4.0.0
7-
certifi==2019.11.28
7+
cachetools==4.1.0
8+
certifi==2020.4.5.1
89
chardet==3.0.4
910
click==7.1.1
11+
colorama==0.4.3 ; sys_platform == 'win32'
1012
dataclasses==0.6 ; python_version < '3.7'
11-
fastapi==0.53.2
13+
fastapi==0.54.1
1214
gunicorn==20.0.4
1315
h11==0.9.0
14-
httptools==0.1.1 ; sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'PyPy'
16+
httptools==0.1.1 ; sys_platform != 'win32'
1517
idna-ssl==1.1.0 ; python_version < '3.7'
1618
idna==2.9
1719
multidict==4.7.5
@@ -23,6 +25,6 @@ six==1.14.0
2325
starlette==0.13.2
2426
urllib3==1.25.8
2527
uvicorn==0.11.3
26-
uvloop==0.14.0 ; sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'PyPy'
28+
uvloop==0.14.0 ; sys_platform != 'win32'
2729
websockets==8.1
2830
yarl==1.4.2

0 commit comments

Comments
 (0)