Skip to content

Commit 3a30ebf

Browse files
committed
fix: restore security dep versions reverted by feat/conductor-clients-alias
The feat/conductor-clients-alias PR accidentally reverted security fixes from fix/security-dependency-bumps: python >=3.9 (should be >=3.10), requests >=2.31.0 (should be >=2.33.0), pytest ^8.4.1 (should be ^9.0.3), and removed pygments >=2.20.0. This left filelock>=3.20.3 (Python >=3.10 only) in dev deps while the Python floor was 3.9, breaking poetry lock and the Harness Worker Image build. Restores all four security settings and regenerates poetry.lock.
1 parent c322ec2 commit 3a30ebf

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)