Skip to content

Commit

Permalink
numpy setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sgsellan committed Jun 22, 2024
1 parent fd12d71 commit 48487cd
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
Expand Up @@ -2,7 +2,7 @@
build-verbosity = "3"
[build-system]
requires = [
"numpy",
"numpy<2",
"scipy",
"setuptools>=42",
"wheel",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def main():
license="MIT",
package_dir={'': 'src'},
packages=setuptools.find_packages(where="src"),
install_requires=['numpy', 'scipy', 'scikit-image'],
install_requires=['numpy<2', 'scipy', 'scikit-image'],
ext_modules=[CMakeExtension('.', exclude_arch=exclude_arch)],
setup_requires=['pybind11>=2.4'],
cmdclass=dict(build_ext=CMakeBuild),
Expand Down

0 comments on commit 48487cd

Please sign in to comment.