Skip to content

Commit e061780

Browse files
committed
Update tooling for Python 3.14
1 parent 48a8ad1 commit e061780

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v6
2020
with:
21-
python-version: "3.13"
21+
python-version: "3.14"
2222
cache: "pip"
2323
cache-dependency-path: "requirements/*.txt"
2424
- name: Run tox
@@ -75,7 +75,7 @@ jobs:
7575
- name: Setup Python
7676
uses: actions/setup-python@v6
7777
with:
78-
python-version: "3.13"
78+
python-version: "3.14"
7979
cache: "pip"
8080
cache-dependency-path: "requirements/*.txt"
8181
- uses: actions/download-artifact@v8

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Python
2323
uses: actions/setup-python@v6
2424
with:
25-
python-version: "3.13"
25+
python-version: "3.14"
2626
- name: Build packages
2727
run: |
2828
pip install -r requirements/testing.txt

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ commands = make test
1919
package = editable
2020

2121
[testenv:check]
22-
basepython = python3.13
22+
base_python = python3.14
2323
commands = make check
2424

2525
[testenv:lint]
26-
basepython = python3.13
26+
base_python = python3.14
2727
commands = make lint
2828

2929
[testenv:coverage]
30-
basepython = python3.13
30+
base_python = python3.14
3131
commands = make coverage-report

0 commit comments

Comments
 (0)