File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
### Fixed
12
12
* Enable offloading for ` numba.njit ` in ` dpctl.deveice_context ` (#630 )
13
13
* Fix upload conditions for main and release branches (#610 )
14
+ * Fix DeprecationWarning when use ` version.parse() ` [ cherry picked from #639 ] (#642 )
14
15
15
16
## [ 0.17.2] - 2021-11-15
16
17
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class DpctlMinimumVersionRequiredError(Exception):
36
36
37
37
# Versions of dpctl lower than 0.8.0 are not compatible with current main
38
38
# of numba_dppy.
39
- if version .parse (dpctl .__version__ ) < version .parse ("0.8.* " ):
39
+ if version .parse (dpctl .__version__ ) < version .parse ("0.8.0 " ):
40
40
raise DpctlMinimumVersionRequiredError
41
41
42
42
# For the Numba_dppy extension to work, we should have at least one
You can’t perform that action at this time.
0 commit comments