Skip to content

Commit 5a6e607

Browse files
Merge pull request #799 from jarrodmillman/drop-py310
Drop Python 3.10 support
2 parents 65fc512 + c844b81 commit 5a6e607

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.11"]
17+
python-version: ["3.12"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
- name: Set up Python 3.11
12+
- name: Set up Python 3.12
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: 3.11
15+
python-version: 3.12
1616

1717
- name: Install TeX
1818
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu, macos]
21-
python-version: ["3.10", "3.11", "3.12"]
21+
python-version: ["3.11", "3.12"]
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ addopts = [
8181
log_cli_level = "info"
8282

8383
[tool.ruff]
84-
target-version = "py310"
84+
target-version = "py311"
8585

8686
[tool.ruff.lint]
8787
select = [

0 commit comments

Comments
 (0)