Skip to content

Commit 7dab375

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents d725d54 + c80dac9 commit 7dab375

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

content/actions/automating-builds-and-tests/building-and-testing-python.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
strategy:
6262
matrix:
63-
python-version: [3.6, 3.7, 3.8, 3.9]
63+
python-version: ["3.6", "3.7", "3.8", "3.9"]
6464
6565
steps:
6666
- uses: actions/checkout@v2
@@ -119,7 +119,7 @@ jobs:
119119
# You can use PyPy versions in python-version.
120120
# For example, pypy2 and pypy3
121121
matrix:
122-
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
122+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9"]
123123
124124
steps:
125125
- uses: actions/checkout@v2
@@ -182,12 +182,12 @@ jobs:
182182
strategy:
183183
matrix:
184184
os: [ubuntu-latest, macos-latest, windows-latest]
185-
python-version: [3.6, 3.7, 3.8, 3.9, pypy2, pypy3]
185+
python-version: ["3.6", "3.7", "3.8", "3.9", pypy2, pypy3]
186186
exclude:
187187
- os: macos-latest
188-
python-version: 3.6
188+
python-version: "3.6"
189189
- os: windows-latest
190-
python-version: 3.6
190+
python-version: "3.6"
191191
```
192192
{% endraw %}
193193

@@ -344,7 +344,7 @@ jobs:
344344
runs-on: ubuntu-latest
345345
strategy:
346346
matrix:
347-
python: [3.7, 3.8, 3.9]
347+
python: ["3.7", "3.8", "3.9"]
348348
349349
steps:
350350
- uses: actions/checkout@v2
@@ -378,7 +378,7 @@ jobs:
378378
runs-on: ubuntu-latest
379379
strategy:
380380
matrix:
381-
python-version: [3.6, 3.7, 3.8, 3.9]
381+
python-version: ["3.6", "3.7", "3.8", "3.9"]
382382
383383
steps:
384384
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)