Skip to content

Commit

Permalink
Bump minimum python version to 3.10
Browse files Browse the repository at this point in the history
3.9 is EOL in a few months and I am tired of typing Optional
  • Loading branch information
kovidgoyal committed Jan 7, 2025
1 parent 9a6e7e4 commit cad319a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
cc: [gcc, clang]
include:
- python: a
pyver: "3.9"
pyver: "3.10"
sanitize: 0

- python: b
pyver: "3.10"
pyver: "3.11"
sanitize: 1

- python: c
pyver: "3.11"
pyver: "3.12"
sanitize: 1


Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: "3.13"

- name: Install Go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Install Go
uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
requires-python = ">=3.9"
requires-python = ">=3.10"

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

0 comments on commit cad319a

Please sign in to comment.