From 85e4e6c42bda49fda7febfca088ced8abaf60520 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Mon, 10 Nov 2025 00:58:27 +0500 Subject: [PATCH] Pin Twisted to <= 25.5.0 due to internal API changes. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 470cab8ea..e1cfec355 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,8 @@ name = "Scrapy" dynamic = ["version"] description = "A high-level Web Crawling and Web Scraping framework" dependencies = [ - "Twisted>=21.7.0", + # Twisted pinned until Scrapy is updated for its internal TLS API changes + "Twisted>=21.7.0,<=25.5.0", "cryptography>=37.0.0", "cssselect>=0.9.1", "defusedxml>=0.7.1",