Skip to content

Commit

Permalink
Remove support for py3.7, py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mmchenry-duolingo committed Jan 22, 2025
1 parent 84bdbdc commit 6ec9b5e
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 @@ -10,7 +10,7 @@ description = "A small dependency injection library for Python."
dynamic = ["version"]
license = { file = "LICENSE" }
name = "minject"
requires-python = ">=3.7"
requires-python = ">=3.9"

dependencies = ["attrs>=17.4", "packaging", "typing_extensions>=4.1"]

Expand Down Expand Up @@ -54,10 +54,10 @@ dependencies = [
]

[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]

[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive minject"

[[tool.hatch.envs.types.matrix]]
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]

0 comments on commit 6ec9b5e

Please sign in to comment.