From 29ed0558f57e37d5e1fc3053d740aa7a1891c354 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Mon, 7 Oct 2024 18:12:47 -0400 Subject: [PATCH] [python] Avoid RCs of dependent packages for our RC (#3142) * [python] Avoid RCs of dependent packages for our RC * code-review feedback --- apis/python/setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apis/python/setup.py b/apis/python/setup.py index e1cb167f8e..cf946f658b 100644 --- a/apis/python/setup.py +++ b/apis/python/setup.py @@ -326,7 +326,10 @@ def run(self): zip_safe=False, setup_requires=["pybind11"], install_requires=[ - "anndata>=0.10.1", + # Temporary for 1.15.0rc series -- avoid RC versions of these packages + "anndata>=0.10.1,<0.11.0rc1", + "networkx~=3.2.1", + "pyparsing~=3.1.4", "attrs>=22.2", "numba>=0.58.0", "numpy<2.0",