Skip to content

Commit

Permalink
Stop pinning to an exact version of Cython (#212)
Browse files Browse the repository at this point in the history
Cython 0.29 is in maintenance mode, so the risk of big breakage is low.
On the other hand, this maintenance picks up important fixes, including
support for newer Pythons.  Furthermore, pinning to an exact version
may cause conflicts if something else pins to a slightly different version.
  • Loading branch information
elprans authored Aug 6, 2021
1 parent f6900b0 commit 99d4be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from setuptools.command import sdist as setuptools_sdist


CYTHON_DEPENDENCY = 'Cython==0.29.23'
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'

# Minimal dependencies required to test edgedb.
TEST_DEPENDENCIES = [
Expand Down

0 comments on commit 99d4be4

Please sign in to comment.