Skip to content

Commit

Permalink
Merge pull request bastibe#409 from mcclure/numpy-explicit-require
Browse files Browse the repository at this point in the history
Require numpy for all installs
  • Loading branch information
bastibe authored Dec 10, 2023
2 parents 4d401f9 + 72c3d87 commit cafadd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ def get_tag(self):
zip_safe=zip_safe,
license='BSD 3-Clause License',
setup_requires=["cffi>=1.0"],
install_requires=['cffi>=1.0'],
install_requires=['cffi>=1.0', 'numpy'],
cffi_modules=["soundfile_build.py:ffibuilder"],
extras_require={'numpy': ['numpy']},
extras_require={'numpy': []}, # This option is no longer relevant, but the empty entry must be left in to avoid breaking old build scripts.
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit cafadd5

Please sign in to comment.