Skip to content

Commit

Permalink
change: Require Python >=3.9
Browse files Browse the repository at this point in the history
Python 3.7 and 3.8 are end-of-life
  • Loading branch information
cal0pteryx committed Nov 1, 2024
1 parent e781352 commit 6def2fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "PyGObject-stubs"
version = "2.12.0"
description = "Typing stubs for PyGObject"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.9"
license = {text = "LGPL-2.1"}
authors = [
{email = "[email protected]"},
Expand Down Expand Up @@ -43,7 +43,7 @@ where = ["src"]

[tool.black]
line-length = 88
target-version = ['py37']
target-version = ['py39']
include = '\.pyi?$'

[tool.codespell]
Expand All @@ -69,7 +69,7 @@ exclude = [
".venv",
]

target-version = "py37"
target-version = "py39"

[tool.ruff.lint]
select = [
Expand Down

0 comments on commit 6def2fb

Please sign in to comment.