-
-
Notifications
You must be signed in to change notification settings - Fork 121
Python 3.13 support #1002
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
Python 3.13 support #1002
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -150,11 +150,10 @@ jobs: | |
| strategy: | ||
| matrix: | ||
| pyver: | ||
| - 3.13-dev | ||
| - 3.13 | ||
| - 3.12 | ||
| - 3.11 | ||
| - >- | ||
| 3.10 | ||
| - 3.10 | ||
| - 3.9 | ||
| - 3.8 | ||
| no-extensions: ['', 'Y'] | ||
|
|
@@ -199,12 +198,7 @@ jobs: | |
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: ${{ matrix.pyver }} | ||
| allow-prereleases: >- | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdraco this should be kept long-term so that adding
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I matched it to
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like keeping
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll revert that change
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just realized there are other checks for
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, leave it as is. I usually like using a different syntax I also didn't fully realize that this is about the action input. I typically have this in the check for allowing failures, which is what confused me and I overlooked the context. |
||
| ${{ | ||
| endsWith(matrix.pyver, '-dev') | ||
| && true | ||
| || false | ||
| }} | ||
| allow-prereleases: true | ||
| - name: Get pip cache dir | ||
| id: pip-cache | ||
| run: | | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Added support for Python 3.13 -- by :user:`bdraco`. |
Uh oh!
There was an error while loading. Please reload this page.