Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/release-notes/3611.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Allow using {mod}`sklearn` ≥1.6, {doc}`dask:index` ≥2024.8, and `sphinx` ≥8.2.1 {smaller}`P Angerer`
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies = [
"seaborn>=0.13",
"h5py>=3.7",
"tqdm",
"scikit-learn>=1.1,<1.6.0",
"scikit-learn>=1.1",
"statsmodels>=0.14",
"patsy!=1.0.0", # https://github.com/pydata/patsy/issues/215
"networkx>=2.7",
Expand Down Expand Up @@ -113,8 +113,7 @@ test-full = [
"scanpy[dask-ml]",
]
doc = [
# https://github.com/sphinx-doc/sphinx/issues/13366
"sphinx>=7,<8.2.0",
"sphinx >=7, !=8.2.0",
"sphinx-book-theme>=1.1.0",
"scanpydoc>=0.15.3",
"sphinx-autodoc-typehints>=1.25.2",
Expand Down Expand Up @@ -150,7 +149,7 @@ scanorama = [ "scanorama" ] # Scanorama dataset integration
scrublet = [ "scikit-image" ] # Doublet detection with automatic thresholds
# Acceleration
rapids = [ "cudf>=0.9", "cuml>=0.9", "cugraph>=0.9" ] # GPU accelerated calculation of neighbors
dask = [ "dask[array]>=2022.09.2,<2024.8.0" ] # Use the Dask parallelization engine
dask = [ "dask[array]>=2022.09.2" ] # Use the Dask parallelization engine
dask-ml = [ "dask-ml", "scanpy[dask]" ] # Dask-ML for sklearn-like API

[tool.hatch.build.targets.wheel]
Expand Down
Loading