Skip to content
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

Bump repository and test Python version to 3.13 #514

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
fail-fast: false
matrix:
toxenv: [lint-signer, test-signer]
pyversion: ['3.9', '3.12']
pyversion: ['3.9', '3.13']
os: [ubuntu-latest, macos-latest]
# Only run repository on 3.12 (dependency pinning is easier with single version)
# Only run repository on 3.13 (dependency pinning is easier with single version)
include:
- toxenv: lint-repo
pyversion: '3.12'
pyversion: '3.13'
os: ubuntu-latest
- toxenv: test-repo
pyversion: '3.12'
pyversion: '3.13'
os: ubuntu-latest
- toxenv: test-e2e
pyversion: '3.12'
pyversion: '3.13'
os: ubuntu-latest
runs-on: ${{ matrix.os }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.12'
python-version: '3.13'

- name: Install build dependencies
run: python3 -m pip install -c build/build-constraints.txt build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-pinned-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.12'
python-version: '3.13'

- name: Install pip-tools
run: pip install -c build/build-constraints.txt pip-tools
Expand Down
2 changes: 1 addition & 1 deletion actions/create-signing-events/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
python-version: "3.13"

- run: |
echo "::group::Install tuf-on-ci"
Expand Down
2 changes: 1 addition & 1 deletion actions/online-sign-targets/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ runs:

- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: "3.11"
python-version: "3.13"

- run: |
echo "::group::Install tuf-on-ci"
Expand Down
2 changes: 1 addition & 1 deletion actions/online-sign/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
python-version: "3.13"

- run: |
echo "::group::Install tuf-on-ci"
Expand Down
2 changes: 1 addition & 1 deletion actions/signing-event/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
python-version: "3.13"

- run: |
echo "::group::Install tuf-on-ci"
Expand Down
2 changes: 1 addition & 1 deletion actions/test-repository/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
python-version: "3.13"

- run: |
echo "::group::Install tuf-on-ci"
Expand Down
2 changes: 1 addition & 1 deletion actions/upload-repository/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:

- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
python-version: "3.13"

- run: |
echo "::group::Install tuf-on-ci"
Expand Down
Loading