Skip to content

Commit 82ae626

Browse files
committed
Fix Dependabot alert: bump pytest to >=9.0.3
Address CVE-2025-71176 and raise minimum Python to 3.10 for pytest 9.
1 parent d236129 commit 82ae626

2 files changed

Lines changed: 25 additions & 287 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ version = "0.1.0"
44
description = "Agent Skills pack for Red Hat Developer Hub users"
55
readme = "README.md"
66
license = "Apache-2.0"
7-
requires-python = ">=3.9"
7+
requires-python = ">=3.10"
88

99
# No runtime dependencies - stdlib only!
1010

1111
[project.optional-dependencies]
1212
dev = [
13-
"pytest>=7.0",
13+
"pytest>=9.0.3",
1414
"pyyaml>=6.0", # SKILL.md structure tests and template YAML parsing
1515
"jsonschema>=4.0", # Optional full JSON Schema validation in rhdh-templates
1616
"ruff>=0.4.0",
@@ -24,7 +24,7 @@ python_functions = ["test_*"]
2424

2525
[tool.ruff]
2626
line-length = 100
27-
target-version = "py39"
27+
target-version = "py310"
2828

2929
[tool.ruff.lint]
3030
select = ["E", "F", "I", "W"]

0 commit comments

Comments
 (0)