Skip to content

Commit cad319a

Browse files
committed
Bump minimum python version to 3.10
3.9 is EOL in a few months and I am tired of typing Optional
1 parent 9a6e7e4 commit cad319a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
cc: [gcc, clang]
2424
include:
2525
- python: a
26-
pyver: "3.9"
26+
pyver: "3.10"
2727
sanitize: 0
2828

2929
- python: b
30-
pyver: "3.10"
30+
pyver: "3.11"
3131
sanitize: 1
3232

3333
- python: c
34-
pyver: "3.11"
34+
pyver: "3.12"
3535
sanitize: 1
3636

3737

@@ -82,7 +82,7 @@ jobs:
8282
- name: Set up Python
8383
uses: actions/setup-python@v4
8484
with:
85-
python-version: "3.12"
85+
python-version: "3.13"
8686

8787
- name: Install Go
8888
uses: actions/setup-go@v4
@@ -167,7 +167,7 @@ jobs:
167167
- name: Set up Python
168168
uses: actions/setup-python@v4
169169
with:
170-
python-version: "3.10"
170+
python-version: "3.11"
171171

172172
- name: Install Go
173173
uses: actions/setup-go@v4

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
requires-python = ">=3.9"
2+
requires-python = ">=3.10"
33

44
[tool.mypy]
55
files = 'kitty,kittens,glfw,*.py,docs/conf.py,gen'

0 commit comments

Comments
 (0)