Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(setup.py): pin all dependencies to a specific number #740

Merged
merged 12 commits into from
Aug 21, 2023
Merged
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 22 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,32 @@
history = history_file.read()

requirements = [
"Click>=7.0",
"PyGithub",
"colorama",
"coloredlogs",
"emoji",
"f90nml",
"gfw-creator",
"gitpython",
"loguru",
"numpy",
"packaging",
"pandas>=1.0",
"psutil",
"pyyaml",
"pyyaml>=5.1",
"questionary",
"semver",
"sqlalchemy",
"tabulate",
"tqdm",
"typing_extensions>=3.10.0.0",
"xdgenvpy",
"Click==8.0.4", # Maximum version for Python 3.6 support
"PyGithub==1.55",
"colorama==0.4.5",
"coloredlogs==15.0.1", # NOTE(PG): Should be removed during cleanup for loguru instead
"emoji==1.7.0",
"f90nml==1.4.2",
"gfw-creator==0.2.2",
"gitpython==3.1.20", # Maximum version for Python 3.6 support
"loguru==0.6.0",
"numpy==1.19.5", # Maximum version for Python 3.6 support
"packaging==21.3",
"pandas==1.1.5", # Correct compatiability with xarray for Python 3.6
"psutil==5.9.1",
"pyyaml==5.1",
"questionary==1.10.0",
"semver==2.13.0",
"sqlalchemy==1.4.39",
"tabulate==0.8.10",
"tqdm==4.64.0",
"typing_extensions==4.1.1", # Maximum number for Python 3.6 support
"xdgenvpy==2.3.5",
]

setup_requirements = []

test_requirements = ["pyfakefs"]
test_requirements = ["pyfakefs==4.6.0",]

setup(
author="Dirk Barbi",
Expand Down