Skip to content

Commit d6c5c11

Browse files
committed
Test 3.14
1 parent fe30117 commit d6c5c11

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build-dist.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Ref: https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml
2+
13
name: Build and upload to PyPI
24

35
# Build on every branch push, tag push, and pull request change:
@@ -28,9 +30,9 @@ jobs:
2830

2931
- name: Build wheels
3032
uses: pypa/[email protected]
31-
# env:
33+
env:
3234
# Skip builds(save time / avoid build error)
33-
# CIBW_SKIP: "*-musllinux_* *-win32"
35+
CIBW_SKIP: "*-musllinux_* *-win32"
3436

3537
- uses: actions/upload-artifact@v4
3638
with:
@@ -49,9 +51,6 @@ jobs:
4951
- name: Build SDist
5052
run: pipx run build --sdist
5153

52-
- name: Check metadata
53-
run: pipx run twine check dist/*
54-
5554
- uses: actions/upload-artifact@v4
5655
with:
5756
name: cibw-sdist

.github/workflows/run-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Ref: https://github.com/wjakob/nanobind_example/blob/master/.github/workflows/pip.yml
2+
13
name: Run tests
24

35
on: [push, pull_request, workflow_dispatch]
@@ -7,7 +9,7 @@ jobs:
79
strategy:
810
fail-fast: false
911
matrix:
10-
python-version: ["3.9", "3.12", "3.14-rc", "3.14t-rc", "pypy3.11"]
12+
python-version: ["3.9", "3.12", "3.14-dev", "3.14t-dev", "pypy3.11"]
1113
os: [ubuntu-latest, windows-latest, macos-latest]
1214
runs-on: ${{ matrix.os }}
1315

0 commit comments

Comments
 (0)