We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f5cac commit 7abf8a8Copy full SHA for 7abf8a8
setup.py
@@ -8,5 +8,7 @@
8
version = "1.1.0",
9
package_dir = {"" : "packages"},
10
packages = find_packages("packages", exclude=[]),
11
- install_requires=['cherrypy', 'numpy']
+ # adding hard requirement for numpy since read the docs uses python 3.7 by default
12
+ # second possible fix is to add read the docs yaml
13
+ install_requires=['cherrypy', 'numpy==1.21.0']
14
)
0 commit comments