Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove MANIFEST.in use auto-generated one for sdists and package_data for wheels #1348

Merged
merged 1 commit into from
Mar 17, 2023
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
7 changes: 0 additions & 7 deletions python/pylibraft/MANIFEST.in

This file was deleted.

5 changes: 3 additions & 2 deletions python/pylibraft/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ def exclude_libcxx_symlink(cmake_manifest):
)


packages = find_packages(include=["pylibraft*"])
setup(
include_package_data=True,
# Don't want libcxx getting pulled into wheel builds.
cmake_process_manifest_hook=exclude_libcxx_symlink,
packages=find_packages(include=["pylibraft", "pylibraft.*"]),
packages=packages,
package_data={key: ["*.pxd"] for key in packages},
zip_safe=False,
)
7 changes: 0 additions & 7 deletions python/raft-dask/MANIFEST.in

This file was deleted.

5 changes: 3 additions & 2 deletions python/raft-dask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ def exclude_libcxx_symlink(cmake_manifest):
)


packages = find_packages(include=["raft_dask*"])
setup(
include_package_data=True,
cmake_process_manifest_hook=exclude_libcxx_symlink,
packages=find_packages(include=["raft_dask", "raft_dask.*"]),
packages=packages,
package_data={key: ["*.pxd"] for key in packages},
zip_safe=False,
)