Skip to content

Commit

Permalink
allowing newer versions of numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlmorgan committed Feb 13, 2022
1 parent effd1a4 commit 57709e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ autograd
emcee
matplotlib
numba
numpy < 1.20, >=1.15
numpy >=1.15
scipy
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# This call to setup() does all the work
setuptools.setup(name="Tweezepy",
version="1.2.5",
version="1.2.6",
author="Ian L. Morgan",
author_email="[email protected]",
description="Single-molecule force spectroscopy calibration",
Expand All @@ -25,10 +25,11 @@
long_description=long_description,
long_description_content_type = 'text/markdown',
install_requires = ["autograd",
"corner",
"emcee",
"matplotlib",
"numba",
"numpy>=1.15,<1.20",
"numpy>=1.15",
"scipy",
],
setup_requires = ["setuptools>=40.6.0"],
Expand Down

0 comments on commit 57709e5

Please sign in to comment.