Skip to content

Commit 1798cf7

Browse files
authored
Upgraded cython to 3.0.x (#1221)
1 parent 6e2ffd4 commit 1798cf7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def run_setup(extensions):
375375
# 1.) build_ext eats errors at compile time, letting the install complete while producing useful feedback
376376
# 2.) there could be a case where the python environment has cython installed but the system doesn't have build tools
377377
if pre_build_check():
378-
cython_dep = 'Cython>=0.20,!=0.25,<0.30'
378+
cython_dep = 'Cython>=3.0'
379379
user_specified_cython_version = os.environ.get('CASS_DRIVER_ALLOWED_CYTHON_VERSION')
380380
if user_specified_cython_version is not None:
381381
cython_dep = 'Cython==%s' % (user_specified_cython_version,)

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pure-sasl
88
twisted[tls]
99
gevent
1010
eventlet
11-
cython>=0.20,<0.30
11+
cython>=3.0
1212
packaging
1313
futurist
1414
asynctest

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist = py{38,39,310,311,312},pypy
44
[base]
55
deps = pytest
66
packaging
7-
cython>=0.20,<0.30
7+
cython>=3.0
88
eventlet
99
gevent
1010
twisted[tls]

0 commit comments

Comments
 (0)