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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ jobs:

# Rename package
text = text.replace(
'name = "rapids_singlecell"',
f'name = "rapids_singlecell-cu{cuda}"',
'name = "rapids-singlecell"',
f'name = "rapids-singlecell-cu{cuda}"',
)
# Rename matching extra to "rapids", remove the other
text = text.replace(f'rapids-cu{cuda} =', 'rapids =')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = [
build-backend = "scikit_build_core.build"

[project]
name = "rapids_singlecell"
name = "rapids-singlecell"
description = "running single cell analysis on Nvidia GPUs"
requires-python = ">=3.12, <3.14"
license = { file = "LICENSE" }
Expand Down
6 changes: 3 additions & 3 deletions src/rapids_singlecell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def _detect_duplicate_installation():
import warnings

known = (
"rapids_singlecell",
"rapids_singlecell-cu12",
"rapids_singlecell-cu13",
"rapids-singlecell",
"rapids-singlecell-cu12",
"rapids-singlecell-cu13",
)
installed = []
for pkg in known:
Expand Down