Skip to content
Draft
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
11 changes: 2 additions & 9 deletions .github/workflows/main_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
uses: actions/checkout@v6
with:
submodules: 'recursive'
repository: NOAA-GFDL/pace
repository: floriandeconinck/pace
path: pace
ref: develop
ref: update/numpy_2x

- name: 'Setup Python ${{ inputs.python_version && inputs.python_version || env.python_default }}'
uses: actions/setup-python@v6
Expand All @@ -54,13 +54,6 @@ jobs:
- name: Install mpi (MPICH flavor)
run: pip install mpich

- name: Install numpy==1.26.4
# Front-load installing numpy to force its usage in the radiation
# scheme of pySHiELD.
# TODO: This is an ugly hack and it should be cleaned up latest once
# we add support for numpy >= 2.0
run: pip install numpy==1.26.4

- name: "External trigger: Remove existing component in pace/develop"
if: ${{ inputs.component_name }}
run: rm -rf ${GITHUB_WORKSPACE}/pace/${{inputs.component_name}}
Expand Down
2 changes: 1 addition & 1 deletion NDSL
Submodule NDSL updated 114 files
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def local_pkg(name: str, relative_path: str) -> str:
local_pkg("pyshield", "pySHiELD"),
"dacite",
"f90nml",
"numpy < 2.0.0",
"numpy >= 2",
"xarray",
"zarr < 3.0.0",
]
Expand Down
Loading