Skip to content

Commit 20e9472

Browse files
committed
fix: fix clean installation script & bump lower bound version for urllib3 to avoid CVE
1 parent 4381ca7 commit 20e9472

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

clean-install-dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source ./_installation_tools.sh
1919

2020
create_venv
2121

22-
upgrade_pip_or_uv
22+
upgrade_pip
2323

2424
./install-all-dev.sh
2525

pyagentspec/constraints/constraints.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ jsonschema==4.23.0
22
pydantic==2.12.4
33
pyyaml==6.0.3
44
httpx==0.28.1
5+
urllib3==2.6.2
56

67
# AutoGen adapter
78
autogen-core==0.7.4

pyagentspec/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def read(file_name):
5656
"pydantic>=2.10,<2.13",
5757
"pyyaml>=6,<7",
5858
"httpx>0.28.0",
59+
"urllib3>=2.5.0", # needed to avoid a CVE present on earlier versions
5960
],
6061
test_suite="tests",
6162
entry_points={

0 commit comments

Comments
 (0)