Skip to content

Commit

Permalink
Merge pull request #4793 from galipremsagar/4297
Browse files Browse the repository at this point in the history
[REVIEW] Add `cudf._cuda` to setup.py
  • Loading branch information
Keith Kraus authored Apr 3, 2020
2 parents e095723 + a863fff commit f5b7ed6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ python/cudf/cudf-coverage.xml
python/cudf/*/_lib/**/*\.cpp
python/cudf/*/_lib/**/*.h
python/cudf/*/_lib/.nfs*
python/cudf/_cuda/*\.cpp
python/cudf/*.ipynb
python/cudf/.ipynb_checkpoints
python/nvstrings/nvstrings-coverage.xml
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
- PR #4767 Remove linking against `gtest_main` and `gmock_main` in unit tests
- PR #4660 Port `cudf::partition` api to python/cython
- PR #4778 Remove `scatter_to_tables` from libcudf, cython and python
- PR #4793 Add `cudf._cuda` to setup.py

## Bug Fixes

Expand Down
Empty file.
2 changes: 1 addition & 1 deletion python/cudf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
),
packages=find_packages(include=["cudf", "cudf.*"]),
package_data=dict.fromkeys(
find_packages(include=["cudf._lib*"]), ["*.pxd"],
find_packages(include=["cudf._lib*", "cudf._cuda*"]), ["*.pxd"],
),
cmdclass=versioneer.get_cmdclass(),
install_requires=install_requires,
Expand Down

0 comments on commit f5b7ed6

Please sign in to comment.