Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected versions for cython and numpy #214

Merged
merged 2 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions py_bind/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requires = [
]

[tool.cibuildwheel]
before-build = "pip install numpy cython && cd py_bind && python setup.py prepare"
before-build = "pip install numpy cython==0.29.36 && cd py_bind && python setup.py prepare"
test-requires = ["nose","six"]
test-command = "cd {project}/py_bind/test && nosetests"
skip = ["cp310-*","pp*"]
skip = ["cp311-*","pp*"]
4 changes: 2 additions & 2 deletions py_bind/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cython
cython >=0.29.28,<3.0a0
nose
numpy
numpy >=1.23, <1.24
pyyaml
six
Loading