-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make
setup.py
consistent with conda recipe (#395)
* Make `setup.py` consistent with conda recipe Inconsistencies in `setup.py` can cause `pip check` to fail on the conda package. * Update GH Actions actions versions * Bump `isort` version to fix poetry error --------- Co-authored-by: Tom Vo <[email protected]>
- Loading branch information
1 parent
2bff738
commit c3f70dc
Showing
4 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ def package_files(directory, prefixes, extensions): | |
author_email="[email protected], [email protected]", | ||
description="Post-processing software for E3SM", | ||
python_requires=">=3.6", | ||
intall_requires=["configobj", "jinja2"], | ||
intall_requires=["configobj>=5.0.0,<6.0.0", "jinja2>=2.0.0"], | ||
packages=find_packages(include=["zppy", "zppy.*"]), | ||
package_data={"": data_files}, | ||
entry_points={"console_scripts": ["zppy=zppy.__main__:main"]}, | ||
|