From 9a72a2550cf83c6c533554d430e6b94adae2bb05 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Tue, 29 Aug 2023 16:52:02 +0400 Subject: [PATCH] Forbid Twisted 23.8.0+. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 405633f55..47c0af0b0 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,8 @@ version = (Path(__file__).parent / "scrapy/VERSION").read_text("ascii").strip() install_requires = [ - "Twisted>=18.9.0", + # 23.8.0 incompatibility: https://github.com/scrapy/scrapy/issues/6024 + "Twisted>=18.9.0,<23.8.0", "cryptography>=36.0.0", "cssselect>=0.9.1", "itemloaders>=1.0.1",