mirror of
https://github.com/actions/setup-python.git
synced 2024-11-09 01:03:33 -05:00
Use quotes around Python versions in README (#175)
This commit is contained in:
parent
3105fb18c0
commit
66319ca9fa
1 changed files with 13 additions and 13 deletions
14
README.md
14
README.md
|
@ -61,12 +61,12 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
python-version: [2.7, 3.6, 3.7, 3.8, pypy-2.7, pypy-3.6]
|
python-version: ['2.7', '3.6', '3.7', '3.8', 'pypy-2.7', 'pypy-3.6']
|
||||||
exclude:
|
exclude:
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
python-version: 3.8
|
python-version: '3.8'
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
python-version: 3.6
|
python-version: '3.6'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
|
@ -85,7 +85,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded
|
# in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded
|
||||||
python-version: [3.5, 3.6, 3.7.4, 3.8]
|
python-version: ['3.5', '3.6', '3.7.4', '3.8']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
|
@ -123,9 +123,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- pypy-3.6 # the latest available version of PyPy that supports Python 3.6
|
- 'pypy-3.6' # the latest available version of PyPy that supports Python 3.6
|
||||||
- pypy-3.7 # the latest available version of PyPy that supports Python 3.7
|
- 'pypy-3.7' # the latest available version of PyPy that supports Python 3.7
|
||||||
- pypy-3.7-v7.3.3 # Python 3.7 and PyPy 7.3.3
|
- 'pypy-3.7-v7.3.3' # Python 3.7 and PyPy 7.3.3
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
|
|
Loading…
Reference in a new issue