From c46a26c1fc6ee522a0b916112664b9fbc7dfb3fd Mon Sep 17 00:00:00 2001 From: Caleb Collins-Parks <46505081+caleb15@users.noreply.github.com> Date: Mon, 1 Nov 2021 16:04:45 -0700 Subject: [PATCH] Pin twisted and autobahn version to prevent breaking major changes from coming in by surprise and causing bugs --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index af3b3b9..b590a50 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( package_dir={"twisted": "daphne/twisted"}, packages=find_packages() + ["twisted.plugins"], include_package_data=True, - install_requires=["twisted[tls]>=18.7", "autobahn>=0.18", "asgiref>=3.2.10,<4"], + install_requires=["twisted[tls]>=18.7,<22", "autobahn>=0.18,<22", "asgiref>=3.2.10,<4"], python_requires=">=3.6", setup_requires=["pytest-runner"], extras_require={