Skip to content

Commit 297207b

Browse files
authored
Merge pull request datastax#980 from datastax/python-3.7-support
PYTHON-1012: bump cython dependency to 0.28
2 parents aa2699b + 1e6155b commit 297207b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Other
1515
-----
1616
* Use global variable for libev loops so it can be subclassed (PYTHON-973)
1717
* Update SchemaParser for V4 (PYTHON-1006)
18+
* Bump Cython dependency version to 0.28 (PYTHON-1012)
1819

1920
3.14.0
2021
======

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def run_setup(extensions):
395395
# 1.) build_ext eats errors at compile time, letting the install complete while producing useful feedback
396396
# 2.) there could be a case where the python environment has cython installed but the system doesn't have build tools
397397
if pre_build_check():
398-
cython_dep = 'Cython>=0.20,!=0.25,<0.28'
398+
cython_dep = 'Cython>=0.20,!=0.25,<0.29'
399399
user_specified_cython_version = os.environ.get('CASS_DRIVER_ALLOWED_CYTHON_VERSION')
400400
if user_specified_cython_version is not None:
401401
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
@@ -11,6 +11,6 @@ pure-sasl
1111
twisted[tls]
1212
gevent>=1.0
1313
eventlet
14-
cython>=0.20,<0.28
14+
cython>=0.20,<0.29
1515
packaging
1616
asynctest; python_version > '3.4'

0 commit comments

Comments
 (0)