Skip to content

Commit e464955

Browse files
authored
Merge pull request #410 from fruch/use_newer_cython_in_builds
github actions: user newer cython versions
2 parents 63dcd36 + 822a925 commit e464955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

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

0 commit comments

Comments
 (0)