Skip to content
Snippets Groups Projects
Verified Commit 45ebc3c5 authored by Lars Bilke's avatar Lars Bilke
Browse files

Disable Parsl workflows on Windows.

parent 96d312d4
No related branches found
No related tags found
No related merge requests found
...@@ -39,9 +39,14 @@ set(LOCAL_VIRTUALENV_BIN_DIRS ...@@ -39,9 +39,14 @@ set(LOCAL_VIRTUALENV_BIN_DIRS
CACHE INTERNAL "" CACHE INTERNAL ""
) )
if(POETRY AND BUILD_TESTING) if(POETRY)
execute_process(COMMAND ${CMD_COMMAND} poetry add if(BUILD_TESTING)
snakemake=${ogs.minimum_version.snakemake} list(APPEND PYTHON_PACKAGES snakemake=${ogs.minimum_version.snakemake})
parsl=${ogs.minimum_version.parsl} if(NOT WIN32)
) # Parsl is not supported on Windows yet
# https://github.com/Parsl/parsl/issues/1878
list(APPEND PYTHON_PACKAGES parsl=${ogs.minimum_version.parsl})
endif()
endif()
execute_process(COMMAND ${CMD_COMMAND} poetry add ${PYTHON_PACKAGES})
endif() endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment