Skip to content

Commit

Permalink
feat: Drop support for Python 3.8 (#280)
Browse files Browse the repository at this point in the history
* feat: Drop support for Python 3.8

* Revert setup-uv bump
  • Loading branch information
edgarrmondragon authored Sep 17, 2024
1 parent a99da97 commit d22dca9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 7 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@
[lint]
extend-ignore = ["TD003"]
"""
python_versions = ["3.12", "3.11", "3.10", "3.9", "3.8"]
python_versions = [
"3.13",
"3.12",
"3.11",
"3.10",
"3.9",
]


@nox.session(python=python_versions)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
matrix:
script: ["test:integration"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
4 changes: 1 addition & 3 deletions src/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ maintainers = [
authors = [
{ name = "[[ author_fullname ]]", email = "[[ author_email ]]" },
]
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -93,7 +92,6 @@ dependencies = "deptry ."
template = "test"
[% raw %][[tool.hatch.envs.all.matrix]][% endraw %]
python = [
"3.8",
"3.9",
"3.10",
"3.11",
Expand Down

0 comments on commit d22dca9

Please sign in to comment.