Skip to content

Commit 2636b04

Browse files
bschoeningdkropachev
authored andcommitted
Remove outdated Python pre-3.7 references (datastax#1186)
1 parent f32b4eb commit 2636b04

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

test-requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ mock>1.1
55
pytz
66
sure
77
pure-sasl
8-
twisted[tls]; python_version >= '3.5'
9-
twisted[tls]==19.2.1; python_version < '3.5'
8+
twisted[tls]
109
gevent>=1.0; python_version < '3.13' and platform_machine != 'i686' and platform_machine != 'win32'
1110
gevent==23.9.0; python_version < '3.13' and (platform_machine == 'i686' or platform_machine == 'win32')
1211
eventlet>=0.33.3; python_version < '3.13'
13-
cython
12+
cython>=0.20,<0.30
1413
packaging
1514
futurist; python_version >= '3.7'
16-
asynctest; python_version >= '3.5'
15+
asynctest
1716
pyyaml

tests/integration/long/test_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
if not hasattr(ssl, 'match_hostname'):
3030
try:
31-
from backports.ssl_match_hostname import match_hostname
31+
from ssl import match_hostname
3232
ssl.match_hostname = match_hostname
3333
except ImportError:
3434
pass # tests will fail

0 commit comments

Comments
 (0)