Skip to content

Commit f226650

Browse files
committed
fix: bump vulnerable deps and drop EOL Python 3.9
- requests >= 2.33.0 (was >=2.31.0) — fixes insecure temp file reuse (GHSA) - pytest ^9.0.3 (was ^8.4.1) — fixes vulnerable tmpdir handling (GHSA) - pygments >= 2.20.0 (dev dep) — fixes ReDoS via GUID regex (GHSA) - python >= 3.10 (was >=3.9) — 3.9 reached EOL Oct 2025; CI already tests 3.12 only - ruff target-version updated from py39 → py310 to match
1 parent 18198a1 commit f226650

2 files changed

Lines changed: 63 additions & 50 deletions

File tree

poetry.lock

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

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ classifiers = [
2323
]
2424

2525
[tool.poetry.dependencies]
26-
python = ">=3.9"
26+
python = ">=3.10"
2727
certifi = ">=14.05.14"
2828
prometheus-client = ">=0.13.1"
2929
six = ">=1.10"
30-
requests = ">=2.31.0"
30+
requests = ">=2.33.0"
3131
typing-extensions = ">=4.2.0"
3232
astor = ">=0.8.1"
3333
shortuuid = ">=1.0.11"
@@ -45,12 +45,13 @@ pytest-cov = ">=4.1.0"
4545
ruff = "^0.12.0"
4646
pre-commit = "^4.2.0"
4747
setuptools = "^80.9.0"
48-
pytest = "^8.4.1"
48+
pytest = "^9.0.3"
49+
pygments = ">=2.20.0"
4950
filelock = ">=3.20.3"
5051
virtualenv = ">=20.36.1"
5152

5253
[tool.ruff]
53-
target-version = "py39"
54+
target-version = "py310"
5455
line-length = 100
5556
src = ["src"]
5657
extend-exclude = [

0 commit comments

Comments
 (0)