Skip to content

Commit

Permalink
pin Cython for setup (#122)
Browse files Browse the repository at this point in the history
Cython==3.0.0 has backwards incompatible changes that break setup
  • Loading branch information
nbdaaron committed Jul 18, 2023
1 parent 28d8ce9 commit cbcb9c0
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 @@ -75,6 +75,6 @@
packages=["asynq", "asynq.tests"],
package_data={"asynq": DATA_FILES},
ext_modules=EXTENSIONS,
setup_requires=["Cython>=0.27.1", "qcore", "setuptools"],
setup_requires=["Cython==0.29.36", "qcore", "setuptools"],
install_requires=["Cython>=0.27.1", "qcore", "pygments"],
)

0 comments on commit cbcb9c0

Please sign in to comment.