We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b78ce commit 4b00f74Copy full SHA for 4b00f74
2 files changed
requirements.txt
@@ -4,7 +4,8 @@ packaging>=25.0
4
setuptools~=70.2;python_version<"3.10"
5
setuptools>=80.9.0;python_version>="3.10"
6
wheel>=0.45.1
7
-attrs>=25.3.0
+attrs~=25.3.0;python_version<"3.9"
8
+attrs>=25.4.0;python_version>="3.9"
9
certifi>=2025.10.5
10
exceptiongroup>=1.3.0
11
websockets~=13.1;python_version<"3.9"
setup.py
@@ -152,7 +152,8 @@
152
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
153
'setuptools>=80.9.0;python_version>="3.10"',
154
'wheel>=0.45.1',
155
- 'attrs>=25.3.0',
+ 'attrs~=25.3.0;python_version<"3.9"',
156
+ 'attrs>=25.4.0;python_version>="3.9"',
157
"certifi>=2025.10.5",
158
"exceptiongroup>=1.3.0",
159
'websockets~=13.1;python_version<"3.9"',
0 commit comments