Skip to content

Commit

Permalink
Fix requires -> install_requires in setup.py (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc authored Dec 14, 2023
1 parent d179486 commit d2e5a8a
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 @@ -98,7 +98,7 @@ def build_extension(self, ext):
cmdclass={"build_ext": CMakeBuild},
python_requires=">=3.10",
setup_requires=['ninja', 'pybind11~=2.11.1'],
requires=['numpy', 'stim'],
install_requires=['numpy', 'stim'],

# Needed on Windows to avoid the default `build` colliding with Bazel's `BUILD`.
# Also, the replacement name is short to avoid blowing the 256 character path limit on windows.
Expand Down

0 comments on commit d2e5a8a

Please sign in to comment.