File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 50
50
- name : Install Python Deps
51
51
if : steps.release.outputs.version == 0
52
52
run : |
53
- pip install -e .[test] --no-cache-dir
53
+ pip install -e .[test]
54
54
55
55
- name : Test
56
56
if : steps.release.outputs.version == 0
Original file line number Diff line number Diff line change 28
28
# pycodestyle is a dependency of flake8, but it must be frozen because
29
29
# their combination breaks too often
30
30
# (example breakage: https://gitlab.com/pycqa/flake8/issues/427)
31
- 'aiohttp>=3.8.1' ,
32
31
'flake8~=5.0' ,
33
32
'psutil' ,
34
33
'pycodestyle~=2.9.0' ,
37
36
CYTHON_DEPENDENCY ,
38
37
]
39
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
+
40
48
# Dependencies required to build documentation.
41
49
DOC_DEPENDENCIES = [
42
50
'Sphinx~=4.1.2' ,
You can’t perform that action at this time.
0 commit comments