Skip to content

Commit d8f5208

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 cd44f14 commit d8f5208

2 files changed

Lines changed: 17 additions & 73 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
1515
"ruff>=0.4.0",
1616
]
@@ -23,7 +23,7 @@ python_functions = ["test_*"]
2323

2424
[tool.ruff]
2525
line-length = 100
26-
target-version = "py39"
26+
target-version = "py310"
2727

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

uv.lock

Lines changed: 14 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)