Skip to content

Commit

Permalink
Add PyPy 3.10 and CPython 3.12 to release action
Browse files Browse the repository at this point in the history
  • Loading branch information
flacjacket authored Oct 7, 2023
1 parent cad049b commit e422ff6
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Download wayland libraries
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]
pypy-version: ["7.3"]
steps:
- name: Download wayland libraries
Expand Down Expand Up @@ -233,8 +233,10 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "pypy-3.8"
- "pypy-3.9"
- "pypy-3.10"
steps:
- name: Install dependencies
run: |
Expand Down Expand Up @@ -264,7 +266,7 @@ jobs:
container: quay.io/pypa/manylinux_2_28_x86_64
needs: build-wayland
env:
python-version: "3.11"
python-version: "3.12"
steps:
- name: Download wayland libraries
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -329,6 +331,11 @@ jobs:
with:
name: wheels-3.11
path: dist/
- name: Download wheels CPython 3.12
uses: actions/download-artifact@v3
with:
name: wheels-3.12
path: dist/
- name: Download wheels PyPy 3.8
uses: actions/download-artifact@v3
with:
Expand All @@ -339,6 +346,11 @@ jobs:
with:
name: wheels-pypy-3.9
path: dist
- name: Download wheels PyPy 3.10
uses: actions/download-artifact@v3
with:
name: wheels-pypy-3.10
path: dist
- name: Download source
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit e422ff6

Please sign in to comment.