19425: cwltool dev version bump
authorPeter Amstutz <peter.amstutz@curii.com>
Fri, 9 Sep 2022 19:26:43 +0000 (15:26 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Wed, 4 Jan 2023 15:29:04 +0000 (10:29 -0500)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

sdk/cwl/arvados_cwl/arvcontainer.py
sdk/cwl/setup.py

index a15c085da775f9eb0a36331d2cbcd23e84e888fe..4c8a9f23e602ff60009a82b3704fc34da0124c54 100644 (file)
@@ -622,6 +622,9 @@ class RunnerContainer(Runner):
         if runtimeContext.prefer_cached_downloads:
             command.append("--prefer-cached-downloads")
 
+        if runtimeContext.fast_parser:
+            command.append("--fast-parser")
+
         command.extend([workflowpath, "/var/lib/cwl/cwl.input.json"])
 
         container_req["command"] = command
index 8d1cbd237286f29491d9f30edabeb17ee9117b4b..0015aad7f8cdeb0c45a5420b900067d7c3abbd9c 100644 (file)
@@ -36,7 +36,7 @@ setup(name='arvados-cwl-runner',
       # file to determine what version of cwltool and schema-salad to
       # build.
       install_requires=[
-          'cwltool==3.1.20220909180746',
+          'cwltool==3.1.20220909192237',
           'schema-salad==8.3.20220825114525',
           'arvados-python-client{}'.format(pysdk_dep),
           'ciso8601 >= 2.0.0',