Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit df91dfd

Browse filesBrowse files
committed
Set job-level continue-on-error for Python 3.13 on Windows
It is specifically that combination that breaks some things. The underlying cause is a change in `isabs` to correctly report that paths on Windows that start with `\` that is not part of a construction such as `\\?\` are not absolute paths. (See #1955 and links therein.) The change to `isabs` starts in 3.13, and it is only applicable to Windows, so only that combination is affected.
1 parent bf9fb93 commit df91dfd
Copy full SHA for df91dfd

File tree

1 file changed

+4
-1
lines changed
Filter options

1 file changed

+4
-1
lines changed

‎.github/workflows/pythonpackage.yml

Copy file name to clipboardExpand all lines: .github/workflows/pythonpackage.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,16 @@ jobs:
2525
python-version: "3.7"
2626
os-ver: "22.04"
2727
- experimental: false
28-
- python-version: "3.13"
28+
- os-type: windows
29+
python-version: "3.13"
2930
experimental: true
3031

3132
fail-fast: false
3233

3334
runs-on: ${{ matrix.os-type }}-${{ matrix.os-ver }}
3435

36+
continue-on-error: ${{ matrix.experimental }}
37+
3538
defaults:
3639
run:
3740
shell: bash --noprofile --norc -exo pipefail {0}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.