Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Oct 20, 2023
1 parent aa7081d commit e36ab58
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion python/cuproj/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

setup(
packages=packages,
package_data={key: ["VERSION", "*.pxd", "*.hpp", "*.cuh"] for key in packages},
package_data={
key: ["VERSION", "*.pxd", "*.hpp", "*.cuh"] for key in packages
},
zip_safe=False,
)
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

import os.path

with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as version_file:
with open(os.path.join(os.path.dirname(__file__), "VERSION")) as version_file:
__version__ = version_file.read().strip()
__git_commit__ = ""
4 changes: 3 additions & 1 deletion python/cuspatial/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

setup(
packages=packages,
package_data={key: ["VERSION", "*.pxd", "*.hpp", "*.cuh"] for key in packages},
package_data={
key: ["VERSION", "*.pxd", "*.hpp", "*.cuh"] for key in packages
},
zip_safe=False,
)

0 comments on commit e36ab58

Please sign in to comment.