Skip to content

Commit bbe7457

Browse files
authored
feat: add support for Python 3.12 (#150)
1 parent 3b60eb6 commit bbe7457

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/linting.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: '3.9'
28+
python-version: '3.12'
2929

3030
- name: Upgrade pip and install required tools
3131
run: |

.github/workflows/testing.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
uses: actions/setup-python@v4
2929
with:
3030
python-version: |
31-
3.6
32-
3.7
3331
3.8
3432
3.9
33+
3.10
34+
3.11
35+
3.12
3536
3637
- name: Upgrade pip and install required tools
3738
run: |

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist =
55
py3.9
66
py3.10
77
py3.11
8+
py3.12
89

910
[testenv]
1011
allowlist_externals = pytest

0 commit comments

Comments
 (0)