Skip to content

Commit baa40dd

Browse files
committed
change name
1 parent b82f18f commit baa40dd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ jobs:
7171
7272
# Rename package
7373
text = text.replace(
74-
'name = "rapids_singlecell"',
75-
f'name = "rapids_singlecell-cu{cuda}"',
74+
'name = "rapids-singlecell"',
75+
f'name = "rapids-singlecell-cu{cuda}"',
7676
)
7777
# Rename matching extra to "rapids", remove the other
7878
text = text.replace(f'rapids-cu{cuda} =', 'rapids =')

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires = [
77
build-backend = "scikit_build_core.build"
88

99
[project]
10-
name = "rapids_singlecell"
10+
name = "rapids-singlecell"
1111
description = "running single cell analysis on Nvidia GPUs"
1212
requires-python = ">=3.12, <3.14"
1313
license = { file = "LICENSE" }

src/rapids_singlecell/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ def _detect_duplicate_installation():
1212
import warnings
1313

1414
known = (
15-
"rapids_singlecell",
16-
"rapids_singlecell-cu12",
17-
"rapids_singlecell-cu13",
15+
"rapids-singlecell",
16+
"rapids-singlecell-cu12",
17+
"rapids-singlecell-cu13",
1818
)
1919
installed = []
2020
for pkg in known:

0 commit comments

Comments
 (0)