Skip to content

Commit

Permalink
BUG: Fix typo in wheel name
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Rit authored and SimonRit committed Mar 16, 2023
1 parent 7763f2c commit 5cb1187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -15,7 +15,7 @@
# Extract cuda version from the CUDACOMMON_CUDA_VERSION cmake option
for arg in sys.argv:
if "CUDACOMMON_CUDA_VERSION" in str(arg):
cuda_version = arg.rsplit('CUDACOMMONG_CUDA_VERSION=', 1)[-1]
cuda_version = arg.rsplit('CUDACOMMON_CUDA_VERSION=', 1)[-1]
wheel_name += '-cuda' + cuda_version.replace('.', '')

setup(
Expand Down

0 comments on commit 5cb1187

Please sign in to comment.