Skip to content

Commit a297ab1

Browse files
committed
update extras
1 parent 2b38d09 commit a297ab1

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

setup.py

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
).load_module()
1111

1212

13+
TEST_REQUIRES = [
14+
"async-timeout~=4.0.2",
15+
"pytest~=7.1.2",
16+
"pytest-aiohttp~=1.0.4",
17+
"pytest-cov~=3.0.0",
18+
"coverage!=4.3",
19+
"coveralls~=3.3.1",
20+
]
21+
22+
1323
setup(
1424
name="wsrpc-aiohttp",
1525
version=module.__version__,
@@ -45,24 +55,11 @@
4555
python_requires=">3.5.*, <4",
4656
extras_require={
4757
"ujson": ["ujson"],
48-
"testing": [
49-
"async-timeout",
50-
"pytest",
51-
"pytest-aiohttp",
52-
"pytest-cov",
53-
"coverage!=4.3",
54-
"coveralls",
55-
],
58+
"testing": TEST_REQUIRES,
5659
"develop": [
57-
"async-timeout",
58-
"coverage!=4.3",
59-
"coveralls",
60-
"pytest",
61-
"pytest-aiohttp",
62-
"pytest-cov",
6360
"Sphinx",
6461
"sphinxcontrib-plantuml",
6562
"tox>=2.4",
66-
],
63+
] + TEST_REQUIRES,
6764
},
6865
)

0 commit comments

Comments
 (0)