Skip to content

Support Python 3.13 #1955

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,25 @@ jobs:
- os-type: windows
python-version: "3.13" # FIXME: Fix and enable Python 3.13 on Windows (#1955).
include:
# Defaults, added to all automatically generated jobs.
- os-ver: latest
- experimental: false
# Customized jobs.
- os-type: ubuntu
python-version: "3.7"
os-ver: "22.04"
- experimental: false
experimental: false
- os-type: windows
python-version: "3.13"
os-ver: latest
experimental: true

fail-fast: false

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

continue-on-error: ${{ matrix.experimental }}

defaults:
run:
shell: bash --noprofile --norc -exo pipefail {0}
Expand Down
Loading