diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9fc071d5..9930ce1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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: | @@ -72,7 +72,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: '0' + fetch-depth: "0" - name: Build wheels uses: pypa/cibuildwheel@v2.18.0 @@ -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