Skip to content

Commit d6b211b

Browse files
authored
Merge pull request apache#776 from datastax/python-754
Bump cython version to allow 0.25.x
2 parents edf483f + c714839 commit d6b211b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

‎CHANGELOG.rst‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Bug Fixes
55
---------
66
* is_idempotent flag is not propagated from PreparedStatement to BoundStatement (PYTHON-736)
77

8+
Other
9+
-----
10+
* Bump Cython dependency version to 0.25.2 (PYTHON-754)
11+
812
3.10.0
913
======
1014
May 24, 2017

‎setup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def run_setup(extensions):
388388
# 1.) build_ext eats errors at compile time, letting the install complete while producing useful feedback
389389
# 2.) there could be a case where the python environment has cython installed but the system doesn't have build tools
390390
ifpre_build_check():
391-
cython_dep='Cython>=0.20,<0.25'
391+
cython_dep='Cython>=0.20,!=0.25,<0.26'
392392
user_specified_cython_version=os.environ.get('CASS_DRIVER_ALLOWED_CYTHON_VERSION')
393393
ifuser_specified_cython_versionisnotNone:
394394
cython_dep='Cython==%s'% (user_specified_cython_version,)

0 commit comments

Comments
(0)