Skip to content

Commit

Permalink
fix: add "oldest-supported-numpy" and remove numpy version range (#1084)
Browse files Browse the repository at this point in the history
* fix: add "oldest-supported-numpy" and remove numpy version range

see https://github.com/scipy/oldest-supported-numpy for details

* remove numpy setup_requires
  • Loading branch information
njzjz committed Apr 2, 2021
1 parent c5e5975 commit ac2a06a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
requires = ["setuptools>=40.8.0", "wheel", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def readme():
packages=find_packages(),
python_requires='~=3.6',
install_requires=[
'numpy>=1.15', 'scipy>=0.20.1', 'networkx',
'numpy', 'scipy>=0.20.1', 'networkx',
'matplotlib', 'hmmlearn>=0.2.1',
'ase', 'scour', 'tqdm',
'coloredlogs',
Expand All @@ -144,7 +144,7 @@ def readme():
'setuptools_scm',
'pytest-runner',
'cython>=0.16',
'numpy>=1.15',
'numpy',
],
package_data={
'reacnetgenerator': ['static/webpack/bundle.html',
Expand Down

1 comment on commit ac2a06a

@vercel
Copy link

@vercel vercel bot commented on ac2a06a Apr 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.