File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88
88
- name : Overwrite for Linux 64
89
89
if : runner.os == 'Linux' && matrix.platform == 'x86_64'
90
90
run : |
91
- echo "CIBW_BUILD=cp3 *_x86_64" >> $GITHUB_ENV
91
+ echo "CIBW_BUILD=cp312 *_x86_64" >> $GITHUB_ENV
92
92
93
93
- name : Overwrite for Linux PyPy
94
94
if : runner.os == 'Linux' && matrix.platform == 'PyPy'
Original file line number Diff line number Diff line change @@ -426,7 +426,9 @@ def run_setup(extensions):
426
426
# 1.) build_ext eats errors at compile time, letting the install complete while producing useful feedback
427
427
# 2.) there could be a case where the python environment has cython installed but the system doesn't have build tools
428
428
if pre_build_check ():
429
- cython_dep = 'Cython>=3.0.11,<4'
429
+ cython_dep = 'Cython>=0.20,!=0.25,<0.30'
430
+ if sys .version_info >= (3 ,12 ):
431
+ cython_dep = 'Cython>=3.0.11,<4'
430
432
user_specified_cython_version = os .environ .get ('CASS_DRIVER_ALLOWED_CYTHON_VERSION' )
431
433
if user_specified_cython_version is not None :
432
434
cython_dep = 'Cython==%s' % (user_specified_cython_version ,)
You can’t perform that action at this time.
0 commit comments