Update minimum twisted to 19.7

This commit is contained in:
Carlton Gibson 2021-11-09 20:01:31 +01:00
parent a5bfc80c35
commit bd6d467810
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ setup(
package_dir={"twisted": "daphne/twisted"}, package_dir={"twisted": "daphne/twisted"},
packages=find_packages() + ["twisted.plugins"], packages=find_packages() + ["twisted.plugins"],
include_package_data=True, include_package_data=True,
install_requires=["twisted[tls]>=18.7", "autobahn>=0.18", "asgiref>=3.2.10,<4"], install_requires=["twisted[tls]>=19.7", "autobahn>=0.18", "asgiref>=3.2.10,<4"],
python_requires=">=3.6", python_requires=">=3.6",
setup_requires=["pytest-runner"], setup_requires=["pytest-runner"],
extras_require={"tests": ["hypothesis", "pytest", "pytest-asyncio"]}, extras_require={"tests": ["hypothesis", "pytest", "pytest-asyncio"]},

View File

@ -1,6 +1,6 @@
[tox] [tox]
envlist = envlist =
py{36,37,38,39,310}-twisted{187,latest} py{36,37,38,39,310}-twisted{197,latest}
[testenv] [testenv]
usedevelop = true usedevelop = true
@ -8,5 +8,5 @@ extras = tests
commands = commands =
pytest -v {posargs} pytest -v {posargs}
deps = deps =
twisted187: twisted==18.7.0 twisted187: twisted==19.7.0
twistedlatest: twisted>=20.3.0 twistedlatest: twisted>=20.3.0