Skip to content

Commit

Permalink
Quote python version numbers (#50)
Browse files Browse the repository at this point in the history
Avoids errors like 3.10 being converted into 3.1 because yaml
interprets it as a fixnum

Went ahead and quoted everything else too, even though there weren't
conceivable decimal point errors there, just because I believe the
intent was for them to be strings.
  • Loading branch information
lambdadog authored Dec 21, 2021
1 parent 9c69854 commit f2a8594
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
include:
- python-version: 3.6
py-short: 36
py-short2: 36m
- python-version: 3.7
py-short: 37
py-short2: 37m
- python-version: 3.8
py-short: 38
py-short2: 38
- python-version: 3.9
py-short: 39
py-short2: 39
- python-version: 3.10
py-short: 310
py-short2: 310
- python-version: '3.6'
py-short: '36'
py-short2: '36m'
- python-version: '3.7'
py-short: '37'
py-short2: '37m'
- python-version: '3.8'
py-short: '38'
py-short2: '38'
- python-version: '3.9'
py-short: '39'
py-short2: '39'
- python-version: '3.10'
py-short: '310'
py-short2: '310'
steps:
- uses: actions/checkout@v1
- name: Set up python
Expand Down

0 comments on commit f2a8594

Please sign in to comment.