Skip to content

Commit

Permalink
Stop pinning to an exact version of Cython (#70)
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 7, 2021
1 parent 4040490 commit 4f22ad3
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 @@ -15,7 +15,7 @@

ROOT = pathlib.Path(__file__).parent

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


class httptools_build_ext(build_ext):
Expand Down

0 comments on commit 4f22ad3

Please sign in to comment.