Skip to content

Commit 42a8bcd

Browse files
committed
Temporarily relax pylints too-many-args settings
1 parent e7ed975 commit 42a8bcd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/main.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:
23-
fetch-depth: '0'
23+
fetch-depth: "0"
2424

2525
- name: Set up Python 3.9
2626
uses: actions/setup-python@v5
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: pylint check
4949
run: |
50-
python -m pylint src/gstools/
50+
python -m pylint --max-positional-arguments 20 src/gstools/
5151
5252
- name: cython-lint check
5353
run: |
@@ -72,7 +72,7 @@ jobs:
7272
steps:
7373
- uses: actions/checkout@v4
7474
with:
75-
fetch-depth: '0'
75+
fetch-depth: "0"
7676

7777
- name: Build wheels
7878
uses: pypa/[email protected]
@@ -92,23 +92,23 @@ jobs:
9292
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
9393
# https://github.com/scipy/oldest-supported-numpy/blob/main/setup.cfg
9494
ver:
95-
- {py: '3.8', np: '==1.20.0', sp: '==1.5.4'}
96-
- {py: '3.9', np: '==1.20.0', sp: '==1.5.4'}
97-
- {py: '3.10', np: '==1.21.6', sp: '==1.7.2'}
98-
- {py: '3.11', np: '==1.23.2', sp: '==1.9.2'}
99-
- {py: '3.12', np: '==1.26.2', sp: '==1.11.2'}
100-
- {py: '3.12', np: '>=2.0.0rc1', sp: '>=1.13.0'}
95+
- { py: "3.8", np: "==1.20.0", sp: "==1.5.4" }
96+
- { py: "3.9", np: "==1.20.0", sp: "==1.5.4" }
97+
- { py: "3.10", np: "==1.21.6", sp: "==1.7.2" }
98+
- { py: "3.11", np: "==1.23.2", sp: "==1.9.2" }
99+
- { py: "3.12", np: "==1.26.2", sp: "==1.11.2" }
100+
- { py: "3.12", np: ">=2.0.0rc1", sp: ">=1.13.0" }
101101
exclude:
102102
- os: macos-14
103-
ver: {py: '3.8', np: '==1.20.0', sp: '==1.5.4'}
103+
ver: { py: "3.8", np: "==1.20.0", sp: "==1.5.4" }
104104
- os: macos-14
105-
ver: {py: '3.9', np: '==1.20.0', sp: '==1.5.4'}
105+
ver: { py: "3.9", np: "==1.20.0", sp: "==1.5.4" }
106106
- os: macos-14
107-
ver: {py: '3.10', np: '==1.21.6', sp: '==1.7.2'}
107+
ver: { py: "3.10", np: "==1.21.6", sp: "==1.7.2" }
108108
steps:
109109
- uses: actions/checkout@v4
110110
with:
111-
fetch-depth: '0'
111+
fetch-depth: "0"
112112

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

0 commit comments

Comments
 (0)