Skip to content

Commit c8e3516

Browse files
authored
Remove support for python 3.11 (#552)
1 parent fd23fec commit c8e3516

File tree

6 files changed

+123
-117
lines changed

6 files changed

+123
-117
lines changed

.github/workflows/linting.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
DEFAULT_PYTHON: "3.11"
13+
DEFAULT_PYTHON: "3.12"
1414

1515
jobs:
1616
codespell:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- published
99

1010
env:
11-
DEFAULT_PYTHON: "3.11"
11+
DEFAULT_PYTHON: "3.12"
1212

1313
jobs:
1414
release:

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
DEFAULT_PYTHON: "3.11"
13+
DEFAULT_PYTHON: "3.12"
1414

1515
jobs:
1616
pytest:
1717
name: Python ${{ matrix.python }}
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python: ["3.11", "3.12", "3.13"]
21+
python: ["3.12", "3.13"]
2222
steps:
2323
- name: ⤵️ Check out code from GitHub
2424
uses: actions/[email protected]

.github/workflows/typing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
DEFAULT_PYTHON: "3.11"
13+
DEFAULT_PYTHON: "3.12"
1414

1515
jobs:
1616
mypy:

0 commit comments

Comments
 (0)