diff --git a/noxfile.py b/noxfile.py index bfc6d7b..1a6409e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -70,18 +70,6 @@ def lint( with session.cd(tmpdir): session.run("git", "init", external=True) session.run("git", "add", ".", external=True) - session.run( - "hatch", - "run", - f"+py={session.python}", - "test:dependencies", - external=True, - ) - session.run( - "hatch", - "run", - f"+py={session.python}", - "typing:check", - external=True, - ) + session.run("hatch", "run", "test:dependencies", external=True) + session.run("hatch", "run", "typing:check", external=True) session.run("pre-commit", "run", "--all", external=True) diff --git a/src/pyproject.toml.jinja b/src/pyproject.toml.jinja index 5b56ac4..d5537f5 100644 --- a/src/pyproject.toml.jinja +++ b/src/pyproject.toml.jinja @@ -75,14 +75,6 @@ features = [ [tool.hatch.envs.test.scripts] integration = "pytest {args:tests}" dependencies = "deptry ." -[% raw %][[tool.hatch.envs.test.matrix]][% endraw %] -python = [ - "3.8", - "3.9", - "3.10", - "3.11", - "3.12", -] [tool.hatch.envs.all] template = "test" @@ -102,14 +94,6 @@ features = [ ] [tool.hatch.envs.typing.scripts] check = "mypy --strict {args:[[ tap_package_import_name ]] tests}" -[% raw %][[tool.hatch.envs.typing.matrix]][% endraw %] -python = [ - "3.8", - "3.9", - "3.10", - "3.11", - "3.12", -] [tool.ruff] line-length = 88