You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
setup.py declares requires = ['numpy'],
Proper syntax for specifying dependencies in setup.py is install_requires = ['numpy'],
Build on Travis works without errors because .travis.yaml explicitly installs numpy package.
Build on Travis should check setup.py and dependencies via installing pip install ., which will fetch dependencies from setup.py.
setup.pydeclaresrequires = ['numpy'],Proper syntax for specifying dependencies in
setup.pyisinstall_requires = ['numpy'],Build on Travis works without errors because
.travis.yamlexplicitly installs numpy package.Build on Travis should check
setup.pyand dependencies via installingpip install ., which will fetch dependencies fromsetup.py.