Skip to content

Commit

Permalink
drop py<3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Nicola Sella <nsella@redhat.com>
  • Loading branch information
inknos committed Sep 17, 2024
1 parent 3ce137f commit 984af4d
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -91,7 +89,7 @@ run = "pytest{env:HATCH_TEST_ARGS:} {args}"
run-cov = "coverage run -m pytest{env:HATCH_TEST_ARGS:} {args}"
cov-combine = "coverage combine"
cov-report = "coverage report -m --skip-covered --fail-under=80 --omit=podman/tests/*"
cov-all = ["run-cov", "cov-report"]
cov = ["run-cov", "cov-report"]

#TODO figure it out later
[tool.hatch.envs.test.env-vars]
Expand All @@ -100,7 +98,7 @@ PODMAN_BINARY = "podman"
DEBUG = "0"

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

[tool.hatch.envs.docs]
features = ["docs"]
Expand All @@ -117,9 +115,6 @@ extra-dependencies = [
"requests-mock >= 1.11.0",
]

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

[tool.ruff]
line-length = 100
[tool.ruff.format]
Expand Down

0 comments on commit 984af4d

Please sign in to comment.