forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
py-connectome-manipulator: fix dependencies in setup.py
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
bluebrain/repo-bluebrain/packages/py-connectome-manipulator/dependencies.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
diff --git a/setup.py b/setup.py | ||
index b01db74160e3a30fe28fda59c435bd8d78b2685f..9229b74e1429419c1c4dd8badf3bcec7105dd604 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -32,19 +32,19 @@ | ||
license="Apache-2", | ||
install_requires=[ | ||
"bluepysnap==3.0.1", | ||
- "numpy==1.24.3", | ||
- "pandas==2.0.2", | ||
- "progressbar==2.5", | ||
- "pyarrow==14.0.1", | ||
- "scipy==1.10.1", | ||
- "scikit-learn==1.5.0", | ||
- "voxcell==3.1.5", | ||
- "tables==3.8.0", # Optional dependency of pandas.DataFrame.to_hdf() | ||
- "distributed==2023.6.0", # Dask | ||
- "dask-mpi==2022.4.0", | ||
+ "numpy>=1.24.3", | ||
+ "pandas>=2.0.2", | ||
+ "progressbar>=2.5", | ||
+ "pyarrow>=14.0.1", | ||
+ "scipy>=1.10.1", | ||
+ "scikit-learn>=1.5.0", | ||
+ "voxcell>=3.1.5", | ||
+ "tables>=3.8.0", # Optional dependency of pandas.DataFrame.to_hdf() | ||
+ "distributed>=2023.6.0", # Dask | ||
+ "dask-mpi>=2022.4.0", | ||
], | ||
packages=find_packages(), | ||
- python_requires="==3.10.*", | ||
+ python_requires=">=3.10", | ||
extras_require={"docs": ["sphinx", "sphinx-bluebrain-theme"]}, | ||
entry_points={ | ||
"console_scripts": [ | ||
@@ -59,6 +59,8 @@ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
+ "Programming Language :: Python :: 3.11", | ||
+ "Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters