Skip to content

Commit e535edb

Browse files
committed
temporary revert hasattr
1 parent 2b095bb commit e535edb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

arrayfire_wrapper/_backend.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,12 @@ def _load_backend_libs(self, specific_backend : BackendType | None = None) -> No
217217
for backend_type in available_backends:
218218
self._load_backend_lib(backend_type)
219219

220-
if hasattr(self, "_backend_type"):
220+
if self._backend_type:
221221
if VERBOSE_LOADS:
222222
print(f"Setting {backend_type.name} as backend.")
223223
break
224224

225-
#if not self._backend_type and not self._clibs:
226-
if not (hasattr(self, "_backend_type") and hasattr(self, "_clib")):
225+
if not self._backend_type and not self._clibs:
227226
raise RuntimeError(
228227
"Could not load any ArrayFire libraries.\n"
229228
"Please look at https://github.com/arrayfire/arrayfire-python/wiki for more information."

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ build-backend = "scikit_build_core.build"
2929

3030
[project]
3131
name = "arrayfire-binary-python-wrapper"
32-
version = "0.5.0+AF3.9.0"
32+
version = "0.6.0+AF3.9.0"
3333
requires-python = ">=3.10"
3434
authors = [
3535
{ name = "ArrayFire", email = "[email protected]"},

0 commit comments

Comments
 (0)