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
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,20 @@ constraint-dependencies = [
"onnxruntime<1.24 ; python_full_version < '3.11'",
]

# sympy 1.14.0 (latest, 2025-04-27) declares `mpmath>=1.1.0,<1.4`. That upper
# bound is precautionary, not a known incompatibility: mpmath 1.4.1 imports
# under sympy 1.14.0 and evaluates correctly — verified 2026-08-01 in a clean
# venv, `sympy.sqrt(8).evalf()` -> 2.82842712474619 (exact expected value).
#
# Nothing in this repo imports sympy or mpmath directly; both arrive
# transitively through torch. The override is what lets the dependency reach
# its latest published release instead of being frozen by an upstream bound
# that no longer reflects reality. Remove it once sympy widens the range.
# source: PyPI sympy 1.14.0 requires_dist; empirical check above.
override-dependencies = [
"mpmath>=1.4.1",
]

# ── CPU-only torch, resolved through the lock ────────────────────────────
#
# Every container in this repo installs torch from the PyTorch CPU index,
Expand Down
6 changes: 3 additions & 3 deletions requirements/ci-postgresql.txt
Original file line number Diff line number Diff line change
Expand Up @@ -760,9 +760,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/ci-sqlite-min.txt
Original file line number Diff line number Diff line change
Expand Up @@ -726,9 +726,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/ci-sqlite.txt
Original file line number Diff line number Diff line change
Expand Up @@ -760,9 +760,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/ci-typecheck.txt
Original file line number Diff line number Diff line change
Expand Up @@ -766,9 +766,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/devcontainer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/docker-runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -724,9 +724,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/runtime-postgresql.txt
Original file line number Diff line number Diff line change
Expand Up @@ -623,9 +623,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
narwhals==2.24.0 ; python_full_version >= '3.11' \
--hash=sha256:42fdedf44e5b2ca7505630d45b4ac3058f38d8485cba9fe1652ca23152df7489 \
Expand Down
6 changes: 3 additions & 3 deletions requirements/setup.txt
Original file line number Diff line number Diff line change
Expand Up @@ -926,9 +926,9 @@ more-itertools==11.1.0 \
# via
# jaraco-classes
# jaraco-functools
mpmath==1.3.0 \
--hash=sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f \
--hash=sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c
mpmath==1.4.1 \
--hash=sha256:dc4f0ea2304480d4a9a48a94c1020571558ade522b44a6912efac63a586e140f \
--hash=sha256:efd6d1b75f09d69524a67609949812668b28e81ecbfe0ab449ced8c13e92642e
# via sympy
multidict==6.7.1 \
--hash=sha256:03ede2a6ffbe8ef936b92cb4529f27f42be7f56afcdab5ab739cd5f27fb1cbf9 \
Expand Down
7 changes: 4 additions & 3 deletions uv.lock

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

Loading