Skip to content

Commit 4f22ad3

Browse files
authored
Stop pinning to an exact version of Cython (#70)
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.
1 parent 4040490 commit 4f22ad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
ROOT = pathlib.Path(__file__).parent
1717

18-
CYTHON_DEPENDENCY = 'Cython==0.29.22'
18+
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
1919

2020

2121
class httptools_build_ext(build_ext):

0 commit comments

Comments
 (0)