Skip to content

Commit e54adcd

Browse files
dependabot[bot]jku
andauthored
build(deps): bump tox from 4.30.3 to 4.31.0 in /build in the build-dependencies group (#681)
* build(deps): bump tox in /build in the build-dependencies group Bumps the build-dependencies group in /build with 1 update: [tox](https://github.com/tox-dev/tox). Updates `tox` from 4.30.3 to 4.31.0 - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst) - [Commits](tox-dev/tox@4.30.3...4.31.0) --- updated-dependencies: - dependency-name: tox dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: build-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Update python versions Python 3.9 is no longer supported, new tox is not compatible anymore. * Run repository in 3.14 * Run tests on 3.10 & 3.14 * signer still runs on 3.9, we just don't test it anymore --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jussi Kukkonen <[email protected]>
1 parent aefc125 commit e54adcd

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

.github/workflows/actions-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2828
with:
29-
python-version: '3.13'
29+
python-version: '3.14'
3030
cache: 'pip'
3131
cache-dependency-path: |
3232
actions/lint-requirements.txt

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
toxenv: [lint-signer, test-signer]
19-
pyversion: ['3.9', '3.13']
19+
pyversion: ['3.10', '3.14']
2020
os: [ubuntu-latest, macos-latest]
21-
# Only run repository on 3.13 (dependency pinning is easier with single version)
21+
# Only run repository on 3.14 (dependency pinning is easier with single version)
2222
include:
2323
- toxenv: lint-repo
24-
pyversion: '3.13'
24+
pyversion: '3.14'
2525
os: ubuntu-latest
2626
- toxenv: test-repo
27-
pyversion: '3.13'
27+
pyversion: '3.14'
2828
os: ubuntu-latest
2929
- toxenv: test-e2e
30-
pyversion: '3.13'
30+
pyversion: '3.14'
3131
os: ubuntu-latest
3232
runs-on: ${{ matrix.os }}
3333
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2121
with:
22-
python-version: '3.13'
22+
python-version: '3.14'
2323

2424
- name: Install build dependencies
2525
run: python3 -m pip install -c build/build-constraints.txt build

.github/workflows/update-pinned-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2727
with:
28-
python-version: '3.13'
28+
python-version: '3.14'
2929

3030
- name: Install pip-tools
3131
run: pip install -c build/build-constraints.txt pip-tools

actions/create-signing-events/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717

1818
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
1919
with:
20-
python-version: "3.13"
20+
python-version: "3.14"
2121

2222
- run: |
2323
echo "::group::Install tuf-on-ci"

actions/online-sign-targets/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ runs:
7777

7878
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
7979
with:
80-
python-version: "3.13"
80+
python-version: "3.14"
8181

8282
- run: |
8383
echo "::group::Install tuf-on-ci"

actions/online-sign/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969

7070
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
7171
with:
72-
python-version: "3.13"
72+
python-version: "3.14"
7373

7474
- run: |
7575
echo "::group::Install tuf-on-ci"

actions/signing-event/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232

3333
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3434
with:
35-
python-version: "3.13"
35+
python-version: "3.14"
3636

3737
- run: |
3838
echo "::group::Install tuf-on-ci"

actions/test-repository/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ runs:
5050

5151
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5252
with:
53-
python-version: "3.13"
53+
python-version: "3.14"
5454

5555
- run: |
5656
echo "::group::Install tuf-on-ci"

actions/upload-repository/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929

3030
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3131
with:
32-
python-version: "3.13"
32+
python-version: "3.14"
3333

3434
- run: |
3535
echo "::group::Install tuf-on-ci"

0 commit comments

Comments
 (0)