Skip to content

Commit

Permalink
Update pynvjitlink/patch.py
Browse files Browse the repository at this point in the history
Co-authored-by: Graham Markall <[email protected]>
  • Loading branch information
isVoid and gmarkall authored Feb 19, 2025
1 parent 3a203d8 commit 5d3448f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynvjitlink/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

import numba_cuda

numba_cuda_ver = (int(x) for x in numba_cuda.__version__.split("."))
numba_cuda_ver = tuple(int(x) for x in numba_cuda.__version__.split("."))
if numba_cuda_ver < (0, 2, 0):
suggestion = "Instead, use NUMBA_CUDA_ENABLE_PYNVJITLINK environment variable to enable pynvjitlink features."
else:
Expand Down

0 comments on commit 5d3448f

Please sign in to comment.