Skip to content

Commit

Permalink
Add support to python 3.13 (#466)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
jairhenrique and nicoddemus authored Oct 25, 2024
1 parent 3e4d949 commit 51bebd3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
- name: Build and Check Package
uses: hynek/[email protected]
with:
attest-build-provenance-github: 'true'
# Disabling because this is failing currently, see #466.
attest-build-provenance-github: 'false'

test:

Expand All @@ -36,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest]
tox_env: ["py"]
include:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
]

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.5.3
envlist = py{38,39,310,311,312}, norewrite, pytest6
envlist = py{38,39,310,311,312,313}, norewrite, pytest6

[testenv]
deps =
Expand Down

0 comments on commit 51bebd3

Please sign in to comment.