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
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ dependencies = [
"procrastinate>=3.5.3",
"fastparquet>=2025.12.0,<2026.0.0; python_version < '3.14'",
"pyarrow>=22.0.0,<23; python_version >= '3.14'",
"pyjwt[crypto]>=2.10.1,<3",
"pyjwt[crypto]>=2.12.0,<3", # CVE-2026-32597
"python-dateutil>=2.9.0.post0,<3",
# "pywebview[qt6]>=5.4,<6; sys_platform == 'linux'",
"requests>=2.32.5,<3",
Expand All @@ -139,6 +139,7 @@ dependencies = [
"filelock>=3.20.1", # CVE-2025-68146
"marshmallow>=3.26.2", # CVE-2025-68480
"fastmcp>=2.0.0,<3", # MCP server - Major version 3 is in beta as of 26/01/2026 and has not been released on PyPI. Upgrade once a stable release is out.
"orjson>=3.11.6", # CVE-2025-67221
]

[project.optional-dependencies]
Expand Down Expand Up @@ -208,7 +209,7 @@ dev = [
"watchdog>=6.0.0,<7",
# Transitive overrides
# WARNING: one cannot negate or downgrade a dependency required here. use override-dependencies for that.
"pip>=5.3", # CVE-2025-8869
"pip>=5.3", # CVE-2025-8869
"uv>=0.9.7", # CVE-2025-54368, GHSA-w476-p2h3-79g9, GHSA-pqhf-p39g-3x64
"fonttools>=4.60.2", # CVE-2025-66034 (GHSA-768j-98cg-p3fv), dep of matplotlib
]
Expand Down Expand Up @@ -348,7 +349,7 @@ addopts = "-p nicegui.testing.plugin -v --strict-markers --log-disable=aignostic
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
timeout = 10 # We use a rather short default timeout. Override with @pytest.mark.timeout(timeout=N)
# timeout_method="signal"
# timeout_method="signal"
env = [
"COVERAGE_FILE=.coverage",
"COVERAGE_PROCESS_START=pyproject.toml",
Expand Down
Loading
Loading