Skip to content

Commit 575c0bf

Browse files
committed
chore: update workflow files to remove Python<3.9 and add 3.12
1 parent c9211a8 commit 575c0bf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@ jobs:
1414
matrix:
1515
python-version:
1616
- "pypy-3.8-v7.3.10"
17+
- "3.12"
1718
- "3.11"
1819
- "3.10"
1920
- "3.9"
20-
- "3.8"
21-
- "3.7"
2221
os: [ubuntu-latest]
2322
runs-on: ${{ matrix.os }}
2423
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}"
2524
steps:
2625
- name: Setup Python for tox
2726
uses: actions/setup-python@v4
2827
with:
29-
python-version: "3.11"
28+
python-version: "3.12"
3029
- name: Install tox
3130
run: python -m pip install tox tox-gh-actions
3231
- uses: actions/checkout@v3

.github/workflows/do-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Python for linting
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: "3.11"
18+
python-version: "3.12"
1919
- name: Install tox
2020
run: python -m pip install tox tox-gh-actions
2121
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)