From 78f05f48be9117a0239c665ef33f69eedf217f65 Mon Sep 17 00:00:00 2001 From: Pavol Juhas Date: Wed, 28 Feb 2024 08:49:28 -0800 Subject: [PATCH] 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 --- cirq-core/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cirq-core/requirements.txt b/cirq-core/requirements.txt index 9bd4633f3e8..9f29aa8b04c 100644 --- a/cirq-core/requirements.txt +++ b/cirq-core/requirements.txt @@ -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