Skip to content

Commit

Permalink
pin Cython when building qcore (#96)
Browse files Browse the repository at this point in the history
the latest version of Cython (3.0.0) has backwards incompatible changes that prevents qcore from building properly now
  • Loading branch information
nbdaaron authored Jul 18, 2023
1 parent 765bdfe commit d182a42
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 @@ -72,6 +72,6 @@
packages=["qcore", "qcore.tests"],
package_data={"qcore": DATA_FILES},
ext_modules=EXTENSIONS,
setup_requires=["Cython"],
setup_requires=["Cython==0.29.36"],
install_requires=["Cython"],
)

0 comments on commit d182a42

Please sign in to comment.