Skip to content

Commit

Permalink
Requirements use version range for Cython
Browse files Browse the repository at this point in the history
  • Loading branch information
erezsh committed Jul 20, 2023
1 parent 6475a36 commit 9bcf0ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "Cython<0.29.35"]
requires = ["setuptools", "wheel", "Cython>=0.29.1,<0.29.35"]
build-backend = "setuptools.build_meta"


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def parse_description():

ext_modules = cythonize('lark_cython/*.pyx'), # accepts a glob pattern
requires = ['Cython'],
install_requires = ['lark>=1.1.7', 'cython<0.29.35', 'Cython<0.29.35'],
install_requires = ['lark>=1.1.7', 'cython>=0.29.1,<0.29.35', 'Cython>=0.29.1,<0.29.35'],
setup_requires=['Cython'],

author = "Erez Shinan",
Expand Down

0 comments on commit 9bcf0ac

Please sign in to comment.