Skip to content
Snippets Groups Projects
Commit 5dd3b037 authored by François  LAURENT's avatar François LAURENT
Browse files

hotfix before release

parent 7e873751
Branches
Tags
1 merge request!13Set of commits to be tagged v0.18.2
Pipeline #135578 passed
......@@ -16,20 +16,20 @@ DISABLE_JULIA = os.environ.get('DISABLE_JULIA', '')
try:
from julia import Julia
except:
if not isempty(DISABLE_JULIA):
if not DISABLE_JULIA:
logging.warning(f"PyCall not found in JULIA_PROJECT={JULIA_PROJECT}; \
please see https://gitlab.pasteur.fr/nyx/TaggingBackends#recommended-installation")
else:
try:
Julia(compiled_modules=False)
except:
if not isempty(DISABLE_JULIA):
if not DISABLE_JULIA:
logging.warning("Failed to set PyCall with compiled_modules=False")
try:
from julia import TaggingBackends
from julia import PlanarLarvae
except:
if not isempty(DISABLE_JULIA):
if not DISABLE_JULIA:
logging.warning(f"TaggingBackends not found in JULIA_PROJECT={JULIA_PROJECT}; \
please see https://gitlab.pasteur.fr/nyx/TaggingBackends#recommended-installation")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment