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

Install ecmwf api client #78

Merged
merged 3 commits into from
Jun 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
7 changes: 4 additions & 3 deletions environments/analysis3/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ channels:
- coecms
- conda-forge
- accessnri
- anaconda
variables:
CARTOPY_USER_BACKGROUNDS: /g/data/hh5/public/apps/cartopy-data/backgrounds
dependencies:
Expand Down Expand Up @@ -69,7 +68,7 @@ dependencies:
- matplotlib
#- matplotlib>=3.5.2|<=3.4.3 # pinned to solve https://github.com/matplotlib/matplotlib/issues/21917
- dreqpy
- pint<0.24 ### https://github.com/Ouranosinc/xclim/issues/1771
- pint ###<0.24 ### https://github.com/Ouranosinc/xclim/issues/1771
- pycodestyle
- nc-time-axis
- jq
Expand Down Expand Up @@ -128,7 +127,7 @@ dependencies:
- panel
- xrft
- git
- openmpi
- openmpi==4.1.6
- mpi4py
- palettable
- xlrd
Expand Down Expand Up @@ -278,6 +277,7 @@ dependencies:
- shellcheck
- pysteps
- ucx-py
- ucx==1.15.0
- geocat-viz
- icclim
- py-cordex
Expand All @@ -290,5 +290,6 @@ dependencies:
- regional-mom6
- u8darts-all
- xwrf
- ecmwf-api-client
- pip:
- railroad-diagrams ### Unlisted dependency of pip and pyparsing
1 change: 1 addition & 0 deletions environments/analysis3/testconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ skip:
- torch.onnx ### Prevent testing of _internal APIs
- torch.testing ### Prevent testing of _internal APIs
- torch.utils.benchmark ### Uses non-existent part of deprecated pkg_resources
- keras.src.backend ### Don't test Keras backends

# Preload these modules before testing to avoid weird python issues
preload:
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ _initialise() {
echo "Copying external files"
for f in "${outside_files_to_copy[@]}"; do
mkdir -p "${OVERLAY_BASE}"/$( dirname "${f#/g/}" )
cp "${f}" "${OVERLAY_BASE}"/"${f#/g/}"
cp -r "${f}" "${OVERLAY_BASE}"/"${f#/g/}"
done

echo "Unsquashing unstable environment"
Expand Down