Skip to content

Commit

Permalink
[python] Avoid RCs of dependent packages for our RC (#3142)
Browse files Browse the repository at this point in the history
* [python] Avoid RCs of dependent packages for our RC

* code-review feedback
  • Loading branch information
johnkerl authored Oct 7, 2024
1 parent 4878c41 commit 29ed055
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apis/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 29ed055

Please sign in to comment.