Skip to content
Closed
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
18 changes: 9 additions & 9 deletions e2e/python-plugin-flask/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions e2e/python-plugin-flask/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ authors = [
readme = "README.md"
requires-python = "^3.10"
dependencies = [
"flask[async] (>=3.1.1,<4.0.0)",
"python-dotenv (>=1.1.1,<2.0.0)",
"flask[async] (>=3.1.3,<4.0.0)",
"python-dotenv (>=1.2.2,<2.0.0)",
"launchdarkly-server-sdk (>=9.12.0,<10.0.0)",
"launchdarkly-observability @ ../../sdk/@launchdarkly/observability-python",
"opentelemetry-exporter-otlp-proto-http (>=1.34.1,<2.0.0)",
Expand Down
611 changes: 440 additions & 171 deletions e2e/python/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions e2e/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ loguru = "^0"
openai = "^1.25.1"
redis = "^5.0.4"
sqlalchemy = "^2.0.29"
orjson = "3.9.15"
orjson = "3.11.6"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
highlight-io = {path = "../../sdk/highlight-py", develop = true}
urllib3 = "2.2.2"
confluent-kafka = "^2.8.2"

[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pytest = "^8.2.0"
black = ">=24.4.2,<27.0.0"
pytest = ">=8.2,<10.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

pytest-asyncio silently downgraded due to version constraint conflict

Medium Severity

Bumping pytest to 9.0.3 while keeping pytest-asyncio = "^0" caused the resolver to silently downgrade pytest-asyncio from 0.25.3 to 0.23.3. Version 0.25.3 requires pytest >=8.2,<9, so it's incompatible with pytest 9. The version with proper pytest 9 support is pytest-asyncio 1.3.0, but the ^0 constraint caps it at <1.0.0. The resolver fell back to 0.23.3, which predates pytest 9 and was never tested against it. The ^0 constraint needs to be widened (e.g., >=1.3.0,<2.0.0) to allow the pytest-9-compatible release.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit a295cb6. Configure here.

pytest-asyncio = "^0"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
Expand Down
186 changes: 135 additions & 51 deletions e2e/tests/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions e2e/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
black = "^24.3.0"
pytest = "^7.4.3"
black = ">=24.3,<27.0"
pytest = ">=7.4.3,<10.0.0"
pytest-mock = "^3.12.0"
pytest-randomly = "^3.15.0"
python = "^3.10"
Expand Down
305 changes: 198 additions & 107 deletions sdk/@launchdarkly/observability-python/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions sdk/@launchdarkly/observability-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ dependencies = [
[project.optional-dependencies]
dev = [
"azure-functions>=1",
"black>=24",
"black>=26.3.1",
"blinker>=1",
"django>=5.2.13",
"fastapi>=0",
"flask>=3",
"flask>=3.1.3",
"functions-framework>=3",
"loguru>=0",
"orjson==3.9.15",
"orjson==3.11.6",
"pygments>=2.20.0",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
Expand Down
281 changes: 186 additions & 95 deletions sdk/highlight-py/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sdk/highlight-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ requests = "^2.33.0"

[tool.poetry.group.dev.dependencies]
azure-functions = "^1"
black = "^24"
black = ">=24,<27"
blinker = "^1"
django = "^4.2.30"
fastapi = "^0"
flask = "^3"
functions-framework = "^3"
loguru = "^0"
orjson = "3.9.15"
orjson = "3.11.6"
pytest = "^9.0.3"
pytest-asyncio = "^1.3.0"
pytest-cov = "^5"
Expand Down
Loading