Skip to content

Commit 551f37f

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 e531a8c commit 551f37f

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
@@ -6,9 +6,9 @@ pytz
66
sure
77
pure-sasl
88
twisted[tls]
9-
gevent>=1.0; python_version < '3.13' and platform_machine != 'i686' and platform_machine != 'win32'
10-
gevent==23.9.0; python_version < '3.13' and (platform_machine == 'i686' or platform_machine == 'win32')
11-
eventlet>=0.33.3; python_version < '3.13'
9+
gevent>=1.0; platform_machine != 'i686' and platform_machine != 'win32'
10+
gevent==23.9.0; platform_machine == 'i686' or platform_machine == 'win32'
11+
eventlet>=0.33.3;
1212
cython>=0.20,<0.30
1313
packaging
1414
futurist

0 commit comments

Comments
 (0)