Skip to content

Commit

Permalink
add VERSION to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
divyegala committed Oct 25, 2023
1 parent e8a2fdf commit 71b1d49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/pylibraft/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ def exclude_libcxx_symlink(cmake_manifest):
# Don't want libcxx getting pulled into wheel builds.
cmake_process_manifest_hook=exclude_libcxx_symlink,
packages=packages,
package_data={key: ["*.pxd"] for key in packages},
package_data={key: ["VERSION", "*.pxd"] for key in packages},
zip_safe=False,
)
2 changes: 1 addition & 1 deletion python/raft-dask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ def exclude_libcxx_symlink(cmake_manifest):
setup(
cmake_process_manifest_hook=exclude_libcxx_symlink,
packages=packages,
package_data={key: ["*.pxd"] for key in packages},
package_data={key: ["VERSION", "*.pxd"] for key in packages},
zip_safe=False,
)

0 comments on commit 71b1d49

Please sign in to comment.