Skip to content

Commit

Permalink
Merge branch 'main' into pgs
Browse files Browse the repository at this point in the history
  • Loading branch information
LSchueler committed Nov 20, 2024
2 parents 3f056f6 + 42a8bcd commit 86ba913
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
fetch-depth: "0"

- name: Set up Python 3.9
uses: actions/setup-python@v5
Expand All @@ -47,7 +47,7 @@ jobs:
- name: pylint check
run: |
python -m pylint src/gstools/
python -m pylint --max-positional-arguments 20 src/gstools/
- name: cython-lint check
run: |
Expand All @@ -72,7 +72,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
fetch-depth: "0"

- name: Build wheels
uses: pypa/[email protected]
Expand All @@ -92,23 +92,23 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
# https://github.com/scipy/oldest-supported-numpy/blob/main/setup.cfg
ver:
- {py: '3.8', np: '==1.20.0', sp: '==1.5.4'}
- {py: '3.9', np: '==1.20.0', sp: '==1.5.4'}
- {py: '3.10', np: '==1.21.6', sp: '==1.7.2'}
- {py: '3.11', np: '==1.23.2', sp: '==1.9.2'}
- {py: '3.12', np: '==1.26.2', sp: '==1.11.2'}
- {py: '3.12', np: '>=2.0.0rc1', sp: '>=1.13.0'}
- { py: "3.8", np: "==1.20.0", sp: "==1.5.4" }
- { py: "3.9", np: "==1.20.0", sp: "==1.5.4" }
- { py: "3.10", np: "==1.21.6", sp: "==1.7.2" }
- { py: "3.11", np: "==1.23.2", sp: "==1.9.2" }
- { py: "3.12", np: "==1.26.2", sp: "==1.11.2" }
- { py: "3.12", np: ">=2.0.0rc1", sp: ">=1.13.0" }
exclude:
- os: macos-14
ver: {py: '3.8', np: '==1.20.0', sp: '==1.5.4'}
ver: { py: "3.8", np: "==1.20.0", sp: "==1.5.4" }
- os: macos-14
ver: {py: '3.9', np: '==1.20.0', sp: '==1.5.4'}
ver: { py: "3.9", np: "==1.20.0", sp: "==1.5.4" }
- os: macos-14
ver: {py: '3.10', np: '==1.21.6', sp: '==1.7.2'}
ver: { py: "3.10", np: "==1.21.6", sp: "==1.7.2" }
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
fetch-depth: "0"

- name: Set up Python ${{ matrix.ver.py }}
uses: actions/setup-python@v5
Expand Down

0 comments on commit 86ba913

Please sign in to comment.