Skip to content

Commit

Permalink
Drop MOAR Python 3.6/3.7
Browse files Browse the repository at this point in the history
Fixes #11

Signed-off-by: Stavros Ntentos <133706+stdedos@users.noreply.github.com>
  • Loading branch information
stdedos committed Oct 19, 2023
1 parent d2d6096 commit 8c65c0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=66.1"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -79,7 +79,7 @@ paths.source = [
]

[tool.mypy]
python_version = "3.7"
python_version = "3.8"
check_untyped_defs = true
explicit_package_bases = true
namespace_packages = true
Expand Down Expand Up @@ -132,8 +132,7 @@ ignore = [
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
]

# py36, but ruff does not support it :/
target-version = "py37"
target-version = "py38"

[tool.ruff.pydocstyle]
convention = "google"
Expand All @@ -156,7 +155,7 @@ convention = "google"

[tool.pylint]

py-version = "3.6"
py-version = "3.8"

ignore-paths="tests/input" # Ignore test inputs

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310,py311
envlist = py38,py39,py310,py311
skipsdist = True
passenv =
FORCE_COLOR
Expand Down

0 comments on commit 8c65c0c

Please sign in to comment.