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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
RAPIDS_VER:
- "25.10"
- "25.12"
name: Build Docker images
runs-on: ubuntu-latest
permissions:
Expand Down
4 changes: 2 additions & 2 deletions conda/rsc_rapids_25.08.yml → conda/rsc_rapids_25.12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ channels:
- conda-forge
- bioconda
dependencies:
- rapids=25.08
- rapids=25.12
- python=3.13
- cuda-version=12.9
- cuda-version=13.0
- cudnn
- cutensor
- cusparselt
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.deps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG CUDA_VER=12.9.0
ARG CUDA_VER=13.0.2
ARG LINUX_VER=ubuntu24.04

FROM nvidia/cuda:${CUDA_VER}-base-${LINUX_VER}
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euxo pipefail

docker_account=scverse
rapids_version=25.10
rapids_version=25.12
grep -v -- '- rapids-singlecell' conda/rsc_rapids_${rapids_version}.yml > rsc_rapids.yml
docker build -t rapids-singlecell-deps:latest -f docker/Dockerfile.deps .
rm rsc_rapids.yml
Expand Down
2 changes: 1 addition & 1 deletion docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Conda
The easiest way to install *rapids-singlecell* is to use one of the *yaml* file provided in the [conda](https://github.com/scverse/rapids_singlecell/tree/main/conda) folder. These *yaml* files install everything needed to run the example notebooks and get you started.
```
conda env create -f conda/rsc_rapids_25.08.yml #default CUDA-12.9 PYTHON-3.13
conda env create -f conda/rsc_rapids_25.12.yml #default CUDA-13.0 PYTHON-3.13
# or
mamba env create -f conda/rsc_rapids_25.10.yml #default CUDA-12.9 PYTHON-3.13
```
Expand Down
8 changes: 2 additions & 6 deletions docs/release-notes/0.13.5.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.13.5 {small}`the-future`
### 0.13.5 {small}`2025-12-13`

```{rubric} Features
```
Expand All @@ -9,10 +9,6 @@
```
* Improves `pp.neighbors` performance with `all_neighbors` and `nn_descent` when a Dask cluster is active {pr}`499` {smaller}`S Dicks`


```{rubric} Bug fixes
```


```{rubric} Misc
```
* Update Docker Container to work with `CUDA-13` {pr}`520` {smaller}`S Dicks`
Loading