mirror of https://github.com/mamba-org/mamba.git
catch import error for cross compiling osx arm64 (#1263)
when version is imported it currenly also try to import the bindings
This commit is contained in:
parent
1439f321c5
commit
9a1a68e82c
|
@ -1 +1,4 @@
|
|||
from libmambapy.bindings import * # noqa: F401,F403
|
||||
try:
|
||||
from libmambapy.bindings import * # noqa: F401,F403
|
||||
except ImportError:
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue