From 6116b04ff7bd7a910651fb53f94b437f5595243f Mon Sep 17 00:00:00 2001 From: meejah Date: Fri, 10 Jun 2022 14:08:53 -0600 Subject: [PATCH] ignore incorrectly packaged autobahn versions --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c84d0ecde..b14893712 100644 --- a/setup.py +++ b/setup.py @@ -114,7 +114,9 @@ install_requires = [ "attrs >= 18.2.0", # WebSocket library for twisted and asyncio - "autobahn >= 19.5.2", + "autobahn >= 19.5.2, != 22.5.1, != 22.4.2, != 22.4.1" + # (the ignored versions above don't have autobahn.twisted.testing + # packaged properly) # Support for Python 3 transition "future >= 0.18.2",