Skip to content
This repository was archived by the owner on Sep 22, 2023. It is now read-only.

Commit 67b2dfb

Browse files
committed
setup: Update dependency versions
* Pin aioresponses to 0.6.1 to avoid deepcopy errors
1 parent 442cd15 commit 67b2dfb

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

setup.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,47 @@
33
import re
44

55
setup_requires = [
6-
'setuptools>=41.2.0',
6+
'setuptools>=45.2.0',
77
]
88
install_requires = [
9-
'multidict>=4.5',
9+
'multidict~=4.7.4',
1010
'appdirs~=1.4.3',
11-
'aiohttp~=3.6.1',
11+
'aiohttp~=3.6.2',
1212
'async_timeout~=3.0', # to avoid pip10 resolver issue
13-
'attrs>=19.1', # to avoid pip10 resolver issue
14-
'python-dateutil>=2.5',
15-
'tabulate>=0.7.7',
16-
'tqdm~=4.21',
13+
'attrs~=19.3', # to avoid pip10 resolver issue
14+
'python-dateutil~=2.8.1',
15+
'tabulate~=0.8.2',
16+
'tqdm~=4.42',
1717
'humanize>=0.5.1',
18-
'yarl>=1.1.1',
18+
'yarl~=1.4.2',
1919
'Click>=7.0',
2020
]
2121
build_requires = [
2222
'wheel>=0.33.6',
2323
'twine>=1.14.0',
2424
]
2525
test_requires = [
26-
'pytest~=5.0.1',
26+
'pytest~=5.3',
2727
'pytest-cov',
2828
'pytest-mock',
29-
'pytest-asyncio>=0.10.0',
30-
'aioresponses>=0.4.2',
31-
'asynctest>=0.13',
29+
'pytest-asyncio~=0.10.0',
30+
'aioresponses==0.6.1',
31+
'asynctest~=0.13.0',
3232
'codecov',
33-
'flake8>=3.7.8',
33+
'flake8>=3.7.9',
3434
]
3535
ci_requires = [
3636
] + build_requires + test_requires
3737
dev_requires = [
3838
'pytest-sugar>=0.9.1',
3939
] + build_requires + test_requires
4040
docs_requires = [
41-
'sphinx~=2.2',
41+
'sphinx~=2.4',
4242
'sphinx-intl>=2.0',
4343
'sphinx_rtd_theme>=0.4.3',
4444
'sphinxcontrib-trio~=1.1.0',
4545
'sphinx-autodoc-typehints~=1.8.0',
46-
'pygments~=2.4',
46+
'pygments~=2.5',
4747
]
4848

4949

0 commit comments

Comments
 (0)