Skip to content

Commit b730598

Browse files
committed
Update workflow for Python versions
1 parent e0605bb commit b730598

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# The type of runner that the job will run on
2121
strategy:
2222
matrix:
23-
python-versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
23+
python-versions: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2424
os: [ubuntu-latest, macos-latest, windows-latest]
2525
runs-on: ${{ matrix.os }}
2626

.github/workflows/preview.yml

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

1919
strategy:
2020
matrix:
21-
python-versions: [ 3.8 ]
21+
python-versions: [ 3.12 ]
2222

2323
steps:
2424
- uses: actions/checkout@v2

.github/workflows/release.yml

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

2222
strategy:
2323
matrix:
24-
python-versions: [3.8]
24+
python-versions: [3.12]
2525

2626
# Steps represent a sequence of tasks that will be executed as part of the job
2727
steps:

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[tox]
22
isolated_build = true
3-
envlist = py37, py38, py39, py310, py311, py312, format, lint, build
3+
envlist = py38, py39, py310, py311, py312, py313, format, lint, build
44

55
[gh-actions]
66
python =
7+
3.12: py313
78
3.12: py312
89
3.11: py311
910
3.10: py310
1011
3.9: py39
1112
3.8: py38, format, lint, build
12-
3.7: py37
1313

1414
[testenv]
1515
allowlist_externals = pytest

0 commit comments

Comments
 (0)