Skip to content

Commit 78f05f4

Browse files
authored
Fix maximum version limit for mpmath (#6482)
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
1 parent e11132e commit 78f05f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cirq-core/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ duet>=0.2.8
44
matplotlib~=3.0
55
# Temporary fix for https://github.com/sympy/sympy/issues/26273
66
# TODO: remove once `pip install --pre sympy` works in a fresh environment
7-
mpmath<=1.3.*
7+
mpmath<1.4
88
networkx>=2.4
99
numpy~=1.16
1010
pandas

0 commit comments

Comments
 (0)