We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c010afc commit 7cd507bCopy full SHA for 7cd507b
numba_dpex/dpctl_support.py
@@ -9,7 +9,7 @@ def _parse_version():
9
t = dpctl.__version__.split(".")
10
if len(t) > 1:
11
try:
12
- return tuple(map(int, t))
+ return tuple(map(int, t[:2]))
13
except ValueError:
14
return (0, 0)
15
else:
0 commit comments