Skip to content

Commit 89f79ef

Browse files
committed
fix(test-requirements): remove python 3.13 restrictions
Original commit c9b24b7 made it not install certain modules on python 3.13 because at the time python was broken and did not support these modules, now they work ok, roll it back.
1 parent 72b51f5 commit 89f79ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test-requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ pytz
77
sure
88
pure-sasl
99
twisted[tls]
10-
gevent>=1.0; python_version < '3.13' and platform_machine != 'i686' and platform_machine != 'win32'
11-
gevent==23.9.0; python_version < '3.13' and (platform_machine == 'i686' or platform_machine == 'win32')
12-
eventlet>=0.33.3; python_version < '3.13'
10+
gevent>=1.0; platform_machine != 'i686' and platform_machine != 'win32'
11+
gevent==23.9.0; platform_machine == 'i686' or platform_machine == 'win32'
12+
eventlet>=0.33.3;
1313
cython>=0.20,<0.30
1414
packaging
1515
futurist

0 commit comments

Comments
 (0)