-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport maintenance/3.3.x] Another attempt at fixing the `collectio…
…ns.abc` issue for Python 3.13 (#2665) (#2666) * Fix issue with importing of frozen submodules (cherry picked from commit f94e855) * Test on Python 3.13 final * Bump CI jobs to python 3.13 --------- Co-authored-by: Daniël van Noord <[email protected]>
- Loading branch information
1 parent
7cfbad1
commit 68714df
Showing
4 changed files
with
46 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
env: | ||
CACHE_VERSION: 3 | ||
KEY_PREFIX: venv | ||
DEFAULT_PYTHON: "3.12" | ||
DEFAULT_PYTHON: "3.13" | ||
PRE_COMMIT_CACHE: ~/.cache/pre-commit | ||
|
||
concurrency: | ||
|
@@ -81,7 +81,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"] | ||
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] | ||
outputs: | ||
python-key: ${{ steps.generate-python-key.outputs.key }} | ||
steps: | ||
|
@@ -138,7 +138,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"] | ||
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] | ||
steps: | ||
- name: Set temp directory | ||
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV | ||
|
@@ -242,11 +242,11 @@ jobs: | |
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
- name: Set up Python 3.12 | ||
- name: Set up Python 3.13 | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
python-version: "3.13" | ||
check-latest: true | ||
- name: Install dependencies | ||
run: pip install -U -r requirements_minimal.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- published | ||
|
||
env: | ||
DEFAULT_PYTHON: "3.12" | ||
DEFAULT_PYTHON: "3.13" | ||
|
||
permissions: | ||
contents: read | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters