Skip to content

Commit be507b7

Browse files
authored
ci: check latest on 3.13 (#5734)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent f2c0ab8 commit be507b7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
python-version: '3.10'
137137
cmake-args: -DPYBIND11_TEST_SMART_HOLDER=ON -DCMAKE_CXX_FLAGS="/GR /EHsc"
138138
- runs-on: windows-2022
139-
python-version: '3.13.3'
139+
python-version: '3.13'
140140
cmake-args: -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreadedDebugDLL
141141
- runs-on: windows-latest
142142
python-version: '3.13t'
@@ -850,7 +850,7 @@ jobs:
850850
args: -DCMAKE_CXX_STANDARD=17
851851
- python: '3.10'
852852
args: -DCMAKE_CXX_STANDARD=20
853-
- python: '3.13.3'
853+
- python: '3.13'
854854

855855

856856
name: "🐍 ${{ matrix.python }} • MSVC 2022 • x86 ${{ matrix.args }}"
@@ -864,6 +864,9 @@ jobs:
864864
with:
865865
python-version: ${{ matrix.python }}
866866
architecture: x86
867+
# Python 3.13.4 broken on Windows
868+
check-latest: >-
869+
${{ matrix.python == '3.13' && runner.os == 'Windows' }}
867870
868871
- name: Update CMake
869872
uses: jwlawson/actions-setup-cmake@v2.0

.github/workflows/reusable-standard.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
with:
3838
python-version: ${{ inputs.python-version }}
3939
allow-prereleases: true
40+
# Python 3.13.4 broken on Windows
41+
check-latest: >-
42+
${{ inputs.python-version == '3.13' && runner.os == 'Windows' }}
4043
4144
- name: Setup Boost (Linux)
4245
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)