Skip to content

Commit

Permalink
Get 3.10 build working for Windows (#51)
Browse files Browse the repository at this point in the history
* Quote all version numbers, add 3.10 to matrix

3.10 was previously only in `include`.

Quotes were added due to errors introduced through YAML interpreting
`3.10` as a Fixnum, which caused `3.1` to be inserted instead.

* Bump `max-parallel` jobs to 5 for windows builds
  • Loading branch information
lambdadog authored Dec 21, 2021
1 parent f2a8594 commit a69f871
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ jobs:
build_windows:
runs-on: windows-latest
strategy:
max-parallel: 4
max-parallel: 5
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
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 ${{ matrix.python-version }}
Expand Down

0 comments on commit a69f871

Please sign in to comment.