Skip to content

Commit

Permalink
Adding deps to be strict
Browse files Browse the repository at this point in the history
  • Loading branch information
hentt30 committed Mar 6, 2023
1 parent 07c7c28 commit c1fbf8c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pandas>=1.1.5
fortranformat>=0.2.5
Click>=7.1.2
pyfiglet>=0.8
loguru>=0.5.3
tabulate>=0.8.7
pandas==1.1.5
fortranformat==0.2.5
Click==7.1.2
pyfiglet==0.8.post1
loguru==0.5.3
tabulate==0.8.7
pyyaml
scipy>=1.5.4
aenum>=3.0.0
numpy<=1.21.0
scipy==1.5.4
aenum==3.0.0
numpy==1.21.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.rst
description_file = README.rst
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
long_description=long_description,
license="GPL",
install_requires=[
"pandas>=1.1.5",
"fortranformat>=0.2.5",
"Click>=7.1.2",
"pyfiglet>=0.8",
"loguru>=0.5.3",
"tabulate>=0.8.7",
"numpy<=1.21.0",
"pandas==1.1.5",
"fortranformat==0.2.5",
"Click==7.1.2",
"pyfiglet==0.8.post1",
"loguru==0.5.3",
"tabulate==0.8.7",
"numpy==1.21.0",
"pyyaml",
"scipy>=1.5.4",
"aenum>=3.0.0",
"scipy==1.5.4",
"aenum==3.0.0",
],
entry_points="""
[console_scripts]
Expand Down

0 comments on commit c1fbf8c

Please sign in to comment.