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
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 : |
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/cibuildwheel@v2.18.0
@@ -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