Skip to content

Commit

Permalink
build 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
joelrahman committed Jan 9, 2025
1 parent c5934b4 commit 7011dce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# - python-version-minor: '13'
- numpy-version: '2.0'
include:
- python-version-minor: '8.5'
- python-version-minor: '8'
numpy-version: '1.23.5'
# - python-version-minor: '8.5'
# numpy-version: '1.24'
Expand All @@ -53,18 +53,18 @@ jobs:
# path-type: inherit

- name: Install hdf5 for python 3.8.5 deps
if: ${{ matrix.python-version-minor == '8.5'}}
if: ${{ matrix.python-version-minor == '8'}}
uses: msys2/setup-msys2@v2
with:
install: mingw-w64-x86_64-hdf5

- name: Install older netcdf4 for python 3.8.5
if: ${{ matrix.python-version-minor == '8.5'}}
if: ${{ matrix.python-version-minor == '8'}}
run: |
pip install netCDF4==1.6.2
- name: finish build on python >3.8
if: ${{ matrix.python-version-minor != '8.5'}}
if: ${{ matrix.python-version-minor != '8'}}
run: |
cat .gitignore_extra >> .gitignore
pip install numpy==${{matrix.numpy-version}} build==1.2.2.post1 ninja meson
Expand All @@ -75,7 +75,7 @@ jobs:
python -m build
pip list
- name: finish build on python 3.8
if: ${{ matrix.python-version-minor == '8.5'}}
if: ${{ matrix.python-version-minor == '8'}}
run: |
cat .gitignore_extra >> .gitignore
pip install numpy==${{matrix.numpy-version}} build==1.2.2.post1 ninja meson setuptools wheel
Expand Down

0 comments on commit 7011dce

Please sign in to comment.