Skip to content

Commit a7a105a

Browse files
committed
Upgrade Tox and Github Actions to Python 3.13 and remove EOL 3.8.
1 parent 9c4dd10 commit a7a105a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: setup python
3535
uses: actions/setup-python@v2
3636
with:
37-
python-version: '3.12'
37+
python-version: '3.13'
3838

3939
- name: Install Requirements [${{ matrix.toxenv }}]
4040
run: pip install tox
@@ -48,14 +48,12 @@ jobs:
4848
strategy:
4949
matrix:
5050
toxenv:
51-
- py38
5251
- py39
5352
- py310
5453
- py311
5554
- py312
55+
- py313
5656
include:
57-
- toxenv: py38
58-
python-version: '3.8'
5957
- toxenv: py39
6058
python-version: '3.9'
6159
- toxenv: py310
@@ -64,6 +62,8 @@ jobs:
6462
python-version: '3.11'
6563
- toxenv: py312
6664
python-version: '3.12'
65+
- toxenv: py313
66+
python-version: '3.13'
6767
env:
6868
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969
TOXENV: ${{ matrix.toxenv }}

.github/workflows/pypi.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@v5
2121
with:
22-
python-version: '3.12'
22+
python-version: '3.13'
2323

2424
- name: Build
2525
run: |

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist =
44
flake8
55
isort
66
mypy
7-
py{38,39,310,311,312,py3}
7+
py{39,310,311,312,313,py3}
88
minversion = 4.11.4
99

1010
[testenv]

0 commit comments

Comments
 (0)