Skip to content

Commit ef17533

Browse files
authored
Bump action and limit Python for build (#2335)
1 parent 526d122 commit ef17533

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/prerelease.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,12 @@ jobs:
5252
echo "PYTEST_ERRORS=$?" >> $GITHUB_ENV
5353
5454
- name: "Build and inspect package 📦"
55-
uses: hynek/build-and-inspect-python-package@c52c3a4710070b50470d903818a7b25115dcd076 # 2.13.0
55+
uses: hynek/build-and-inspect-python-package@fe0a0fb1925ca263d076ca4f2c13e93a6e92a33e # 2.17.0
5656
if: matrix.python-version == '3.10'
5757
id: baipp
58+
with:
59+
# pydantic-core (via PyO3) does not yet support Python 3.14
60+
python-version: "3.13"
5861

5962
- run: echo Packages can be found at "${BAIPP_DIST}"
6063
if: matrix.python-version == '3.10'

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,11 @@ jobs:
5555
- run: python -Im pip install tox-uv
5656

5757
- name: "Build and inspect package 📦"
58-
uses: hynek/build-and-inspect-python-package@c52c3a4710070b50470d903818a7b25115dcd076 # 2.13.0
58+
uses: hynek/build-and-inspect-python-package@fe0a0fb1925ca263d076ca4f2c13e93a6e92a33e # 2.17.0
5959
id: baipp
60+
with:
61+
# pydantic-core (via PyO3) does not yet support Python 3.14
62+
python-version: "3.13"
6063

6164
- run: echo Packages can be found at "${BAIPP_DIST}"
6265
env:

0 commit comments

Comments
 (0)