Skip to content

Commit

Permalink
[ci] fix: install all supported Python versions in GH workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Arndt <[email protected]>
  • Loading branch information
SpotlightKid committed May 25, 2024
1 parent df7992c commit bc873ee
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pr_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
if: matrix.os == 'windows-latest'

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
3.11
3.12
pypy3.9
pypy3.10
- name: Build wheels
uses: pypa/[email protected]
env:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/push_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
if: matrix.os == 'windows-latest'

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
3.11
3.12
pypy3.9
pypy3.10
- name: Build wheels
uses: pypa/[email protected]
env:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,17 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
if: matrix.os == 'windows-latest'

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
3.11
3.12
pypy3.9
pypy3.10
- name: Build wheels
uses: pypa/[email protected]
env:
Expand Down

0 comments on commit bc873ee

Please sign in to comment.