diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-18 09:35:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 09:35:42 -0500 |
commit | a8703819ebc1f36471e8067f9ce5ff5527877dfe (patch) | |
tree | cbb78cbc015c4c8c49f2527fa09e4b922f18944a /tox.ini | |
parent | Ensure the user ID is serialized in the payload instead of used as an instanc... (diff) | |
download | synapse-a8703819ebc1f36471e8067f9ce5ff5527877dfe.tar.xz |
Fix the Python 3.5 old-deps build. (#9146)
setuptools 51.0.0 dropped support for Python 3.5.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini index 297136fcc5..5210e7b860 100644 --- a/tox.ini +++ b/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 |