8000 Split dependencies between runtime and test · python/webhook-mailer@bb50e51 · GitHub
[go: up one dir, main page]

Skip to content

Commit bb50e51

Browse files
zwareberkerpeksag
authored andcommitted
Split dependencies between runtime and test
Also updates dependencies to versions that work with Python 3.7 without requiring changes to the code.
1 parent e164cb9 commit bb50e51

File tree

4 files changed

+47
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-r requirements.in
2+
pytest
3+
pytest-aiohttp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# pip-compile dev-requirements.in
6+
#
7+
aiohttp==2.3.10
8+
aiosmtplib==1.0.6
9+
async-timeout==3.0.1 # via aiohttp
10+
atomicwrites==1.3.0 # via pytest
11+
attrs==19.1.0 # via pytest
12+
chardet==3.0.4 # via aiohttp
13+
idna-ssl==1.1.0 # via aiohttp
14+
idna==2.8 # via idna-ssl, yarl
15+
importlib-metadata==0.18 # via pluggy, pytest
16+
more-itertools==7.1.0 # via pytest
17+
multidict==4.5.2 # via aiohttp, yarl
18+
packaging==19.0 # via pytest
19+
pluggy==0.12.0 # via pytest
20+
py==1.8.0 # via pytest
21+
pyparsing==2.4.0 # via packaging
22+
pytest-aiohttp==0.3.0
23+
pytest==5.0.1
24+
six==1.12.0 # via packaging
25+
wcwidth==0.1.7 # via pytest
26+
yarl==1.3.0 # via aiohttp
27+
zipp==0.5.2 # via importlib-metadata
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# XXX: Somewhere after 2.x, aiohttp made a change that breaks our tests
2+
aiohttp<3
3+
aiosmtplib
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
aiohttp==1.3.1
2-
# https://github.com/aio-libs/aiohttp/issues/2662
3-
yarl==0.18.0
4-
aiosmtplib==1.0.0
5-
pytest==3.1.3
6-
pytest-aiohttp==0.1.3
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# pip-compile requirements.in
6+
#
7+
aiohttp==2.3.10
8+
aiosmtplib==1.0.6
9+
async-timeout==3.0.1 # via aiohttp
10+
chardet==3.0.4 # via aiohttp
11+
idna-ssl==1.1.0 # via aiohttp
12+
idna==2.8 # via idna-ssl, yarl
13+
multidict==4.5.2 # via aiohttp, yarl
14+
yarl==1.3.0 # via aiohttp