forked from MirrorHub/synapse
Fix the Python 3.5 old-deps build. (#9146)
setuptools 51.0.0 dropped support for Python 3.5.
This commit is contained in:
parent
de1f8de319
commit
a8703819eb
2 changed files with 4 additions and 0 deletions
1
changelog.d/9146.misc
Normal file
1
changelog.d/9146.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Fix the Python 3.5 + old dependencies build in CI.
|
3
tox.ini
3
tox.ini
|
@ -103,6 +103,9 @@ usedevelop=true
|
|||
[testenv:py35-old]
|
||||
skip_install=True
|
||||
deps =
|
||||
# Ensure a version of setuptools that supports Python 3.5 is installed.
|
||||
setuptools < 51.0.0
|
||||
|
||||
# Old automat version for Twisted
|
||||
Automat == 0.3.0
|
||||
|
||||
|
|
Loading…
Reference in a new issue