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
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 downgraded, incompatible with pytest 9

High Severity

The pytest-asyncio constraint "^0" (meaning >=0, <1) combined with bumping pytest to 9.0.3 caused the resolver to downgrade pytest-asyncio from 0.25.3 to 0.23.3. Versions 0.24.x0.25.x have an explicit pytest < 9 upper bound so they're excluded. Version 0.23.3 lacks that upper bound but predates pytest 9 and is likely incompatible with its breaking changes. Actual pytest 9 support was added in pytest-asyncio 1.3.0, which the ^0 constraint prevents from being installed. This will likely break async tests.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c859102. 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
318 changes: 205 additions & 113 deletions sdk/@launchdarkly/observability-python/poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions sdk/@launchdarkly/observability-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dependencies = [
"opentelemetry-instrumentation-weaviate==0.40.14",
"opentelemetry-instrumentation-wsgi==0.55b1",
"urllib3>=2.6.3",
"requests>=2.32.4",
"requests>=2.33.0",
"ariadne-codegen (>=0.14.0,<0.15.0)",
"launchdarkly-server-sdk (>=9.12.0, < 10.0.0)",
"launchdarkly-server-sdk-otel (>=1.2.0, < 2.0.0)",
Expand All @@ -78,14 +78,14 @@ dependencies = [
[project.optional-dependencies]
dev = [
"azure-functions>=1",
"black>=24",
"black>=26.3.1",
"blinker>=1",
"django>=5.2.11",
"fastapi>=0",
"flask>=3",
"flask>=3.1.3",
"functions-framework>=3",
"loguru>=0",
"orjson==3.9.15",
"orjson==3.11.6",
"pytest>=8",
"pytest-asyncio>=0",
"pytest-cov>=5",
Expand Down
22 changes: 11 additions & 11 deletions sdk/highlight-py/poetry.lock

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

Loading