Skip to content

Commit 51bebd3

Browse files
Add support to python 3.13 (#466)
Also disable 'attest-build-provenance-github': seems to be broken at the moment: ``` Run actions/attest-build-provenance@v1 Run actions/attest-build-provenance@f1185f1 Error: Failed to get ID token: Error message: Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable ``` --------- Co-authored-by: Bruno Oliveira <[email protected]>
1 parent 3e4d949 commit 51bebd3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
- name: Build and Check Package
2626
uses: hynek/[email protected]
2727
with:
28-
attest-build-provenance-github: 'true'
28+
# Disabling because this is failing currently, see #466.
29+
attest-build-provenance-github: 'false'
2930

3031
test:
3132

@@ -36,7 +37,7 @@ jobs:
3637
strategy:
3738
fail-fast: false
3839
matrix:
39-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
40+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
4041
os: [ubuntu-latest, windows-latest]
4142
tox_env: ["py"]
4243
include:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
"Topic :: Software Development :: Testing",
3637
]
3738

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.5.3
3-
envlist = py{38,39,310,311,312}, norewrite, pytest6
3+
envlist = py{38,39,310,311,312,313}, norewrite, pytest6
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)