File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 15
15
-----
16
16
* Use global variable for libev loops so it can be subclassed (PYTHON-973)
17
17
* Update SchemaParser for V4 (PYTHON-1006)
18
+ * Bump Cython dependency version to 0.28 (PYTHON-1012)
18
19
19
20
3.14.0
20
21
======
Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ def run_setup(extensions):
395
395
# 1.) build_ext eats errors at compile time, letting the install complete while producing useful feedback
396
396
# 2.) there could be a case where the python environment has cython installed but the system doesn't have build tools
397
397
if pre_build_check ():
398
- cython_dep = 'Cython>=0.20,!=0.25,<0.28 '
398
+ cython_dep = 'Cython>=0.20,!=0.25,<0.29 '
399
399
user_specified_cython_version = os .environ .get ('CASS_DRIVER_ALLOWED_CYTHON_VERSION' )
400
400
if user_specified_cython_version is not None :
401
401
cython_dep = 'Cython==%s' % (user_specified_cython_version ,)
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ pure-sasl
11
11
twisted[tls]
12
12
gevent>=1.0
13
13
eventlet
14
- cython>=0.20,<0.28
14
+ cython>=0.20,<0.29
15
15
packaging
16
16
asynctest; python_version > '3.4'
You can’t perform that action at this time.
0 commit comments