-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from smarie/feature/102_py313
Added python 3.13
- Loading branch information
Showing
6 changed files
with
43 additions
and
19 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 |
---|---|---|
|
@@ -60,6 +60,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Install python ${{ matrix.nox_session.python }} for tests | ||
if: ${{ ! contains(fromJson('["3.13"]'), matrix.nox_session.python ) }} | ||
uses: MatteoH2O1999/[email protected] # actions/[email protected] | ||
id: set-py | ||
with: | ||
|
@@ -68,6 +69,18 @@ jobs: | |
allow-build: info | ||
cache-build: true | ||
|
||
- name: Install python ${{ matrix.nox_session.python }} for tests (3.13) | ||
if: contains(fromJson('["3.13"]'), matrix.nox_session.python ) | ||
uses: actions/setup-python@v5 | ||
id: set-py-latest | ||
with: | ||
# Include all versions including pre releases | ||
# See https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#specifying-a-python-version | ||
python-version: ${{ format('~{0}.0-alpha.0', matrix.nox_session.python) }} | ||
architecture: x64 | ||
allow-build: info | ||
cache-build: true | ||
|
||
- name: Install python 3.12 for nox | ||
uses: actions/[email protected] | ||
with: | ||
|
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
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
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