Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-release-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
wheel-smoke-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "pypy3.11"]
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
sdist:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
path: dist

windows:
runs-on: windows-2022
runs-on: windows-2025
strategy:
matrix:
target: [ x64, x86 ]
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
path: dist

linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
target: [ x86_64, i686, aarch64 ]
Expand All @@ -154,7 +154,7 @@ jobs:
if: matrix.target == 'aarch64'
name: Install built wheel on ARM architecture
with:
base_image: '--platform=linux/aarch64 ubuntu:22.04'
base_image: '--platform=linux/aarch64 ubuntu:24.04'
githubToken: ${{ github.token }}
install: |
export TZ=UTC
Expand Down Expand Up @@ -183,15 +183,15 @@ jobs:
target: x86_64
artifact: wheel-macos-pypy
manylinux: ''
- os: windows-2022
- os: windows-2025
target: x64
artifact: wheel-windows-pypy
manylinux: ''
- os: ubuntu-22.04
- os: ubuntu-24.04
target: x86_64
artifact: wheel-linux-pypy
manylinux: auto
- os: ubuntu-22.04
- os: ubuntu-24.04
target: aarch64
artifact: wheel-linux-pypy-aarch64
manylinux: 2_24
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:

release:
name: Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- sdist
- macos-x86_64
Expand Down
Loading