Skip to content

Commit 4b1070c

Browse files
committed
Rename matrix variable python_version to python-version
1 parent b5eb6ef commit 4b1070c

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

.github/workflows/basemap-data-hires.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python_version:
16+
python-version:
1717
[
1818
"2.7",
1919
]
2020
max-parallel: 1
21-
container: "pylegacy/python:${{ matrix.python_version }}-debian-4"
21+
container: "pylegacy/python:${{ matrix.python-version }}-debian-4"
2222
steps:
2323
-
2424
name: Checkout
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
51-
python_version:
51+
python-version:
5252
[
5353
"2.6",
5454
"2.7",
@@ -62,7 +62,7 @@ jobs:
6262
"3.9",
6363
]
6464
max-parallel: 5
65-
container: "pylegacy/python:${{ matrix.python_version }}-debian-5"
65+
container: "pylegacy/python:${{ matrix.python-version }}-debian-5"
6666
steps:
6767
-
6868
name: Checkout
@@ -98,12 +98,12 @@ jobs:
9898
runs-on: ubuntu-latest
9999
strategy:
100100
matrix:
101-
python_version:
101+
python-version:
102102
[
103103
"2.7",
104104
]
105105
max-parallel: 1
106-
container: "pylegacy/python:${{ matrix.python_version }}-debian-5"
106+
container: "pylegacy/python:${{ matrix.python-version }}-debian-5"
107107
environment: PyPI
108108
steps:
109109
-

.github/workflows/basemap-data.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python_version:
16+
python-version:
1717
[
1818
"2.7",
1919
]
2020
max-parallel: 1
21-
container: "pylegacy/python:${{ matrix.python_version }}-debian-4"
21+
container: "pylegacy/python:${{ matrix.python-version }}-debian-4"
2222
steps:
2323
-
2424
name: Checkout
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
51-
python_version:
51+
python-version:
5252
[
5353
"2.6",
5454
"2.7",
@@ -62,7 +62,7 @@ jobs:
6262
"3.9",
6363
]
6464
max-parallel: 5
65-
container: "pylegacy/python:${{ matrix.python_version }}-debian-5"
65+
container: "pylegacy/python:${{ matrix.python-version }}-debian-5"
6666
steps:
6767
-
6868
name: Checkout
@@ -98,12 +98,12 @@ jobs:
9898
runs-on: ubuntu-latest
9999
strategy:
100100
matrix:
101-
python_version:
101+
python-version:
102102
[
103103
"2.7",
104104
]
105105
max-parallel: 1
106-
container: "pylegacy/python:${{ matrix.python_version }}-debian-5"
106+
container: "pylegacy/python:${{ matrix.python-version }}-debian-5"
107107
environment: PyPI
108108
steps:
109109
-

.github/workflows/basemap.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
"i386",
1818
"amd64",
1919
]
20-
max-parallel: 6
20+
max-parallel: 2
2121
fail-fast: false
2222
runs-on: ubuntu-latest
2323
container: "tinybases/${{matrix.arch}}-python:3.6-debian-4"
@@ -75,7 +75,7 @@ jobs:
7575
"i386",
7676
"amd64",
7777
]
78-
python_version:
78+
python-version:
7979
[
8080
"2.7",
8181
"3.5",
@@ -88,7 +88,7 @@ jobs:
8888
fail-fast: false
8989
needs: build-geos
9090
runs-on: ubuntu-latest
91-
container: "tinybases/${{matrix.arch}}-python:${{matrix.python_version}}-debian-4"
91+
container: "tinybases/${{matrix.arch}}-python:${{matrix.python-version}}-debian-4"
9292
steps:
9393
-
9494
name: Checkout
@@ -119,7 +119,7 @@ jobs:
119119
run: |
120120
set -e
121121
. /etc/profile
122-
case "${{matrix.python_version}}" in
122+
case "${{matrix.python-version}}" in
123123
2.[67]|3.[01234]) pkgvers=1.11.3;;
124124
*) pkgvers=1.16.6;;
125125
esac
@@ -148,7 +148,7 @@ jobs:
148148
name: Upload build artifacts
149149
uses: actions/upload-artifact@v1
150150
with:
151-
name: artifacts-build-${{matrix.arch}}-${{matrix.python_version}}
151+
name: artifacts-build-${{matrix.arch}}-${{matrix.python-version}}
152152
path: ${{env.PKGDIR}}/dist
153153

154154
repair:
@@ -159,7 +159,7 @@ jobs:
159159
"i386",
160160
"amd64",
161161
]
162-
python_version:
162+
python-version:
163163
[
164164
"2.7",
165165
"3.5",
@@ -187,7 +187,7 @@ jobs:
187187
name: Download build artifacts
188188
uses: actions/download-artifact@v1
189189
with:
190-
name: artifacts-build-${{matrix.arch}}-${{matrix.python_version}}
190+
name: artifacts-build-${{matrix.arch}}-${{matrix.python-version}}
191191
path: ${{env.PKGDIR}}/dist
192192
-
193193
name: Install GCC toolchain
@@ -250,7 +250,7 @@ jobs:
250250
name: Upload artifacts
251251
uses: actions/upload-artifact@v1
252252
with:
253-
name: artifacts-build-${{matrix.arch}}-${{matrix.python_version}}
253+
name: artifacts-build-${{matrix.arch}}-${{matrix.python-version}}
254254
path: ${{env.PKGDIR}}/dist
255255

256256
upload:
@@ -261,7 +261,7 @@ jobs:
261261
"i386",
262262
"amd64",
263263
]
264-
python_version:
264+
python-version:
265265
[
266266
"2.7",
267267
"3.5",
@@ -274,7 +274,7 @@ jobs:
274274
if: startsWith(github.event.ref, 'refs/tags/v')
275275
needs: repair
276276
runs-on: ubuntu-latest
277-
container: "tinybases/${{matrix.arch}}-python:${{matrix.python_version}}-debian-5"
277+
container: "tinybases/${{matrix.arch}}-python:${{matrix.python-version}}-debian-5"
278278
environment: PyPI
279279
steps:
280280
-
@@ -284,7 +284,7 @@ jobs:
284284
name: Download build artifacts
285285
uses: actions/download-artifact@v1
286286
with:
287-
name: artifacts-build-${{matrix.arch}}-${{matrix.python_version}}
287+
name: artifacts-build-${{matrix.arch}}-${{matrix.python-version}}
288288
path: ${{env.PKGDIR}}/dist
289289
-
290290
name: Print environment

0 commit comments

Comments
 (0)