Skip to content

Commit 4a0cbfb

Browse files
authored
Remove cuda/__init__.py in cuda-parallel package (#3750)
* Remove cuda/__init__.py and update README * cuda_parallel editable installs are also broken --------- Co-authored-by: Ashwin Srinath <[email protected]>
1 parent 18cb1ac commit 4a0cbfb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/cuda_parallel/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please visit the documentation here: https://nvidia.github.io/cccl/python.html.
77
## Local development
88

99
```bash
10-
pip3 install -e ../cuda_cccl
11-
pip3 install -e .[test]
10+
pip3 install ../cuda_cccl
11+
pip3 install .[test] -v
1212
pytest -v ./tests/
1313
```

python/cuda_parallel/cuda/__init__.py

Whitespace-only changes.

python/cuda_parallel/cuda/parallel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44

5-
from cuda.parallel._version import __version__
5+
from ._version import __version__
66

77
__all__ = ["__version__"]

0 commit comments

Comments
 (0)