Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pytest-timeout>=2.2.0
pytest-xdist>=3.5.0

# Additional deps for async / DB tests
aiohttp>=3.9.0
aiohttp>=3.13.5
aiosqlite>=0.19.0
sqlalchemy>=2.0.0

Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ fastapi>=0.115,<0.128
uvicorn>=0.30.0,<1.0
pydantic>=2.6,<3.0
email-validator>=2.0.0,<3.0
python-multipart>=0.0.26,<1.0
requests>=2.33.0,<3.0
python-multipart>=0.0.29,<1.0
requests>=2.34.2,<3.0
Copy link
Copy Markdown

@augmentcode augmentcode Bot May 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

requirements.txt:6: requests is now constrained to >=2.34.2,<3.0, but the telemetry bridge requirement files in this PR pin requests==2.33.0; if any build/install ever combines these requirement sets, pip will hit an unsatisfiable version conflict.

Severity: medium

Other Locations
  • suite-core/telemetry_bridge/aws_lambda/requirements.txt:1
  • suite-core/telemetry_bridge/azure_function/requirements.txt:2
  • suite-core/telemetry_bridge/edge_collector/collector_api/requirements.txt:4
  • suite-core/telemetry_bridge/gcp_function/requirements.txt:2

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Version conflict: requests>=2.34.2,<3.0 here is incompatible with the requests==2.33.0 pin in the telemetry bridge requirement files (suite-core/telemetry_bridge/*/requirements.txt) updated in this same PR. If these requirement sets are ever composed (e.g., in CI or a shared venv), pip will fail with an unsatisfiable dependency error. Either bump the telemetry bridge pins to >=2.34.2 or align this lower bound to accommodate 2.33.0.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At requirements.txt, line 6:

<comment>Version conflict: `requests>=2.34.2,<3.0` here is incompatible with the `requests==2.33.0` pin in the telemetry bridge requirement files (`suite-core/telemetry_bridge/*/requirements.txt`) updated in this same PR. If these requirement sets are ever composed (e.g., in CI or a shared venv), pip will fail with an unsatisfiable dependency error. Either bump the telemetry bridge pins to `>=2.34.2` or align this lower bound to accommodate `2.33.0`.</comment>

<file context>
@@ -2,12 +2,12 @@ fastapi>=0.115,<0.128
-python-multipart>=0.0.26,<1.0
-requests>=2.33.0,<3.0
+python-multipart>=0.0.29,<1.0
+requests>=2.34.2,<3.0
 httpx>=0.27.0,<1.0
 pgmpy==0.1.24
</file context>

httpx>=0.27.0,<1.0
pgmpy==0.1.24
PyJWT>=2.12.0,<3.0
cryptography>=46.0.7,<47.0.0
cryptography>=48.0.0,<49.0.0
cffi>=2.0.0,<3.0
structlog>=25.4.0,<26.0.0
PyYAML>=6.0.1,<7.0
Expand All @@ -24,7 +24,7 @@ passlib[bcrypt]>=1.7.4,<2.0
tenacity>=8.2.0,<9.0
ssvc>=1.2.0,<2.0
sarif-om>=1.0.4,<2.0
python-dotenv>=1.0.0,<2.0
python-dotenv>=1.2.2,<2.0
sqlalchemy>=2.0.0,<3.0
pyotp>=2.9.0,<3.0
cvss>=3.6,<4.0
Expand All @@ -38,7 +38,7 @@ pytest>=9.0.3
pytest-asyncio>=1.0.0,<2.0
pytest-cov>=4.1.0,<6.0
pytest-timeout>=2.2.0,<3.0
aiohttp>=3.13.4,<4.0
aiohttp>=3.13.5,<4.0
aiosqlite>=0.19.0,<1.0
prometheus_client>=0.20.0,<1.0
duckdb>=0.10.0
Expand Down
2 changes: 1 addition & 1 deletion suite-core/telemetry_bridge/aws_lambda/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.32.4
requests==2.33.0
PyYAML==6.0.1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
azure-functions==1.18.0
requests==2.32.4
requests==2.33.0
PyYAML==6.0.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
fastapi==0.109.0
uvicorn[standard]==0.27.0
pydantic==2.5.3
requests==2.32.4
requests==2.33.0
PyYAML==6.0.1
boto3==1.34.34
azure-storage-blob==12.19.0
Expand Down
2 changes: 1 addition & 1 deletion suite-core/telemetry_bridge/gcp_function/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
functions-framework==3.5.0
requests==2.32.4
requests==2.33.0
PyYAML==6.0.1
Loading