Skip to content

Commit

Permalink
Resolving library dependency and bugs with newer Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
john-hawkins committed Mar 26, 2024
1 parent dbcb762 commit bd4b0a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Flask==1.1.1
Flask>=2.2.2
numpy>=1.16.4
pandas>=0.25.3
matplotlib==3.1.0
matplotlib>=3.1.0
pytest>=6.0.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
name = "minvime",
packages = ["minvime"],
license = "MIT",
install_requires = ['pandas>=0.25.3', 'numpy>=1.16.4', 'Flask==1.1.1', 'matplotlib==3.1.0'],
install_requires = ['pandas>=0.25.3', 'numpy>=1.16.4', 'Flask>=2.2.2', 'matplotlib>=3.1.0'],
entry_points = {
"console_scripts": ['minvime = minvime.minvime:main']
},
Expand Down

0 comments on commit bd4b0a2

Please sign in to comment.