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

Adding py-ruamel modules for gmao-swell-env #1311

Merged
merged 3 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions configs/common/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ packages:
require: '+excel'
py-pybind11:
require: '@2.11.0'
# To avoid duplicate packages
py-ruamel-yaml:
require: '@0.17.16'
# Pin the py-setuptools version to avoid duplicate Python packages
py-setuptools:
require: '@63.4.3'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ class GmaoSwellEnv(BundlePackage):
depends_on("py-setuptools", type="run")
depends_on("py-pycodestyle", type="run")
depends_on("py-pyyaml", type="run")
depends_on("py-ruamel-yaml", type="run")
depends_on("py-ruamel-yaml-clib", type="run")
# Note that the +delayed option is for compatibility
# with the py-xnrl package (this restricts py-dask
# to certain versions, since the newest versions
Expand Down
Loading