Skip to content

Commit e394578

Browse files
committed
Wheels for Python 3.13
And update to ubuntu 24.04
1 parent d8af938 commit e394578

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
ruff:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414
- name: Checkout pygit2

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- os: ubuntu-22.04
15+
- os: ubuntu-24.04
1616
python-version: 3.9
17-
- os: ubuntu-22.04
17+
- os: ubuntu-24.04
1818
python-version: '3.13-dev'
19-
- os: ubuntu-22.04
19+
- os: ubuntu-24.04
2020
python-version: 'pypy3.9'
2121
- os: macos-latest
2222
python-version: 3.9
@@ -43,7 +43,7 @@ jobs:
4343
LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.1 /bin/sh build.sh test
4444
4545
aarch64:
46-
runs-on: ubuntu-22.04
46+
runs-on: ubuntu-24.04
4747
steps:
4848
- name: Checkout
4949
uses: actions/checkout@v4
@@ -60,7 +60,7 @@ jobs:
6060
LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.1 /bin/sh build.sh test
6161
6262
s390x:
63-
runs-on: ubuntu-22.04
63+
runs-on: ubuntu-24.04
6464
if: github.ref == 'refs/heads/master'
6565
steps:
6666
- name: Checkout

.github/workflows/wheels.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
- py313
78
tags:
89
- 'v*'
910

@@ -13,7 +14,7 @@ jobs:
1314
runs-on: ${{ matrix.os }}
1415
strategy:
1516
matrix:
16-
os: [ubuntu-22.04, macos-12]
17+
os: [ubuntu-24.04, macos-12]
1718

1819
steps:
1920
- uses: actions/checkout@v4
@@ -28,7 +29,7 @@ jobs:
2829
platforms: all
2930

3031
- name: Install cibuildwheel
31-
run: python -m pip install cibuildwheel==2.19.2
32+
run: python -m pip install cibuildwheel==2.20.0
3233

3334
- name: Build wheels
3435
run: python -m cibuildwheel --output-dir wheelhouse
@@ -41,7 +42,7 @@ jobs:
4142
pypi:
4243
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
4344
needs: [build_wheels]
44-
runs-on: ubuntu-22.04
45+
runs-on: ubuntu-24.04
4546

4647
steps:
4748
- uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)