Skip to content

Commit

Permalink
Make conda/meta.yaml and setup.py consistent
Browse files Browse the repository at this point in the history
Inconsistencies in `setup.py` are causing `pip check` to fail
on the conda package.
  • Loading branch information
xylar committed Feb 2, 2023
1 parent 215eb56 commit 23de9b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ requirements:

run:
- python >=3.6
- fair-research-login >=0.2.6,<0.3.0
- globus-sdk >=3.0.0,<4.0.0
- six
- globus-sdk >=2
- fair-research-login

test:
imports:
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
author_email="[email protected], [email protected], [email protected]",
description="Long term HPSS archiving software for E3SM",
packages=find_packages(include=["zstash", "zstash.*"]),
python_requires=">=3.6",
install_requires=[
"six==1.16.0",
"globus-sdk<4.0.0>=3.0.0",
"fair-research-login==0.2.6",
"fair-research-login>=0.2.6,<0.3.0",
"globus-sdk>=3.0.0,<4.0.0",
"six",
],
entry_points={"console_scripts": ["zstash=zstash.main:main"]},
)

0 comments on commit 23de9b2

Please sign in to comment.