Skip to content

Commit

Permalink
Fix maximum version limit for mpmath (#6482)
Browse files Browse the repository at this point in the history
The `1.3.*` pattern is invalid in `install_requires` context.
The `mpmath<1.4` spec prohibits pre-releases of 1.4 such as 1.4.0a0.

Related to #6475
  • Loading branch information
pavoljuhas authored Feb 28, 2024
1 parent e11132e commit 78f05f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cirq-core/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ duet>=0.2.8
matplotlib~=3.0
# Temporary fix for https://github.com/sympy/sympy/issues/26273
# TODO: remove once `pip install --pre sympy` works in a fresh environment
mpmath<=1.3.*
mpmath<1.4
networkx>=2.4
numpy~=1.16
pandas
Expand Down

0 comments on commit 78f05f4

Please sign in to comment.