Skip to content

Commit 298df7e

Browse files
committed
Update workflows to treat Python 3.12 as minimum version
1 parent b48f6a8 commit 298df7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
platform: [ubuntu-latest]
17-
python-version: ["3.8", "3.12"]
17+
python-version: ["3.12", "3.13"]
1818

1919
runs-on: ${{ matrix.platform }}
2020

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
env:
4949
CIBW_PLATFORM: linux
5050
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
51-
CIBW_BUILD: "cp38-* cp311-*"
51+
CIBW_BUILD: "cp311-*"
5252
CIBW_SKIP: "*-musllinux*"
5353
CIBW_TEST_COMMAND: "python -c 'import pylibbpf; print(f\"pylibbpf {pylibbpf.__version__} imported successfully\")'"
5454
CIBW_TEST_SKIP: "*-linux_aarch64"

0 commit comments

Comments
 (0)