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
20 changes: 10 additions & 10 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
95 changes: 56 additions & 39 deletions e2e/python/poetry.lock

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

2 changes: 1 addition & 1 deletion e2e/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ confluent-kafka = "^2.8.2"

[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
pytest = "^8.2.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 0.23.3 is incompatible with pytest 9.0.3

High Severity

The pytest constraint was broadened to >=8.2,<10.0 allowing resolution to 9.0.3, but pytest-asyncio = "^0" caps at <1.0.0, preventing installation of v1.3.0+ which is the version that actually supports pytest 9. Poetry resolved to pytest-asyncio 0.23.3 (which lacks an upper bound in metadata but is known-incompatible with pytest 9). This will likely cause pytest to crash at plugin load time, breaking all tests—not just async ones.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9f90db6. Configure here.

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

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

2 changes: 1 addition & 1 deletion e2e/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package-mode = false

[tool.poetry.dependencies]
black = "^26.3.1"
pytest = "^7.4.3"
pytest = ">=7.4.3,<10.0.0"
pytest-mock = "^3.12.0"
pytest-randomly = "^3.15.0"
python = "^3.10"
Expand Down
Loading
Loading