We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f23f2ff commit ebd1448Copy full SHA for ebd1448
setup.py
@@ -28,7 +28,6 @@
28
# pycodestyle is a dependency of flake8, but it must be frozen because
29
# their combination breaks too often
30
# (example breakage: https://gitlab.com/pycqa/flake8/issues/427)
31
- 'aiohttp>=3.8.1',
32
'flake8~=5.0',
33
'psutil',
34
'pycodestyle~=2.9.0',
@@ -37,6 +36,15 @@
37
36
CYTHON_DEPENDENCY,
38
]
39
+if vi < (3, 12):
40
+ # XXX Revert this change later.
41
+ #
42
+ # Python 3.12 is new and there's no aiohttp wheel for it yet.
43
+ # And pip helfully fails on building a wheel for it and I've
44
+ # no idea how to disable that.
45
+ TEST_DEPENDENCIES += ['aiohttp>=3.8.1']
46
+
47
48
# Dependencies required to build documentation.
49
DOC_DEPENDENCIES = [
50
'Sphinx~=4.1.2',
0 commit comments