diff options
author | 2024-10-07 21:18:10 +0100 | |
---|---|---|
committer | 2024-10-12 10:03:36 +0100 | |
commit | 979e51afdf5fa2caab077cce0d1afd7e6f8916f6 (patch) | |
tree | 4ec0ce0abb69c3fd9e274eeb81c2d944e36fb01c | |
parent | Ensure Python versions ending in t are installed to a dir ending in t (diff) |
Don't install packages that aren't compatible with 3.13t
For now there isn't an environment marker for free threaded python, so these packages need to be disabled for all 3.13 versions
https://discuss.python.org/t/environment-marker-for-free-threading/60007/5
-rw-r--r-- | requirements/eval-deps.pip | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/requirements/eval-deps.pip b/requirements/eval-deps.pip index 45496d7..d18948c 100644 --- a/requirements/eval-deps.pip +++ b/requirements/eval-deps.pip @@ -7,7 +7,7 @@ fishhook~=0.3; python_version == '3.12' forbiddenfruit~=0.1 fuzzywuzzy~=0.18 lark~=1.2 -matplotlib~=3.9 +matplotlib~=3.9 ; python_version != '3.13' more-itertools~=10.5 networkx~=3.3 numpy~=2.1 @@ -16,7 +16,7 @@ pendulum~=3.0 ; python_version == '3.12' pyarrow~=17.0; python_version == '3.12' python-dateutil~=2.9 pyyaml~=6.0 -scipy~=1.14 +scipy~=1.14 ; python_version != '3.13' sympy~=1.13 typing-extensions~=4.12 tzdata~=2024.2 |