20
20
steps :
21
21
- uses : actions/checkout@v4
22
22
with :
23
- fetch-depth : ' 0 '
23
+ fetch-depth : " 0 "
24
24
25
25
- name : Set up Python 3.9
26
26
uses : actions/setup-python@v5
47
47
48
48
- name : pylint check
49
49
run : |
50
- python -m pylint src/gstools/
50
+ python -m pylint --max-positional-arguments 20 src/gstools/
51
51
52
52
- name : cython-lint check
53
53
run : |
72
72
steps :
73
73
- uses : actions/checkout@v4
74
74
with :
75
- fetch-depth : ' 0 '
75
+ fetch-depth : " 0 "
76
76
77
77
- name : Build wheels
78
78
@@ -92,23 +92,23 @@ jobs:
92
92
os : [ubuntu-latest, windows-latest, macos-13, macos-14]
93
93
# https://github.com/scipy/oldest-supported-numpy/blob/main/setup.cfg
94
94
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" }
101
101
exclude :
102
102
- 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" }
104
104
- 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" }
106
106
- 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" }
108
108
steps :
109
109
- uses : actions/checkout@v4
110
110
with :
111
- fetch-depth : ' 0 '
111
+ fetch-depth : " 0 "
112
112
113
113
- name : Set up Python ${{ matrix.ver.py }}
114
114
uses : actions/setup-python@v5
0 commit comments