We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b3f8e commit 2783cabCopy full SHA for 2783cab
build-system/luxmake/wheel.py
@@ -141,7 +141,7 @@ def make_wheel(args):
141
# Export METADATA file
142
with open(dist_info / "METADATA", "w", encoding="utf-8") as f:
143
nvrtc_version = get_dep_version("nvrtc")
144
- major = float(nvrtc_version.split('.')[0])
+ major = int(nvrtc_version.split('.')[0])
145
requirement = (
146
f"nvidia-cuda-nvrtc-cu{major}=={nvrtc_version}"
147
if major <= 12
0 commit comments