Skip to content

Commit

Permalink
Remove outdated Python pre-3.7 references (datastax#1186)
Browse files Browse the repository at this point in the history
  • Loading branch information
bschoening authored and dkropachev committed Jan 5, 2025
1 parent 081c6b0 commit 3886640
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ mock>1.1
pytz
sure
pure-sasl
twisted[tls]; python_version >= '3.5'
twisted[tls]==19.2.1; python_version < '3.5'
gevent>=1.0; python_version < '3.13' and platform_machine != 'i686' and platform_machine != 'win32'
gevent==23.9.0; python_version < '3.13' and (platform_machine == 'i686' or platform_machine == 'win32')
eventlet>=0.33.3; python_version < '3.13'
cython
twisted[tls]
gevent>=1.0
eventlet
cython>=0.20,<0.30
packaging
futurist; python_version >= '3.7'
asynctest; python_version >= '3.5'
asynctest
pyyaml
2 changes: 1 addition & 1 deletion tests/integration/long/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

if not hasattr(ssl, 'match_hostname'):
try:
from backports.ssl_match_hostname import match_hostname
from ssl import match_hostname
ssl.match_hostname = match_hostname
except ImportError:
pass # tests will fail
Expand Down

0 comments on commit 3886640

Please sign in to comment.