Skip to content

Commit f8aff17

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

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ 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

2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030
- uses: actions/checkout@v2
31-
- uses: actions/setup-python@v2
31+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
3232
with:
3333
python-version: ${{ matrix.python-versions }}
3434

.github/workflows/preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818

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

2323
steps:
2424
- uses: actions/checkout@v2
25-
- uses: actions/setup-python@v2
25+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
2626
with:
2727
python-version: ${{ matrix.python-versions }}
2828

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
# This workflow contains a single job called "release"
1818
release:
1919
name: Create Release
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-latest
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:
@@ -42,7 +42,7 @@ jobs:
4242
version: ${{ steps.tag_name.outputs.current_version }}
4343
path: ./CHANGELOG.md
4444

45-
- uses: actions/setup-python@v2
45+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
4646
with:
4747
python-version: ${{ matrix.python-versions }}
4848

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.13: 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)