Skip to content

Commit

Permalink
Merge pull request #57 from fmalatino/fix/numpy
Browse files Browse the repository at this point in the history
FIX: Pinning numpy version in setup.py
  • Loading branch information
fmalatino authored Jun 21, 2024
2 parents 5342b11 + 7c5326d commit d6f39c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Step Python
uses: actions/[email protected]
with:
python-version: '3.8.12'
python-version: '3.11.7'
- name: Install OpenMPI for gt4py
run: |
sudo apt-get install libopenmpi-dev
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8.12, 3.11.7]
python: [3.11.7]
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Python
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ def local_pkg(name: str, relative_path: str) -> str:
"xarray",
"f90nml>=1.1.0",
"fsspec",
"netcdf4",
"netcdf4==1.7.0",
"scipy", # restart capacities only
"h5netcdf", # for xarray
"dask", # for xarray
"numpy==1.26.4",
]


Expand Down

0 comments on commit d6f39c1

Please sign in to comment.