19425: Add experimental --fast-parser
authorPeter Amstutz <peter.amstutz@curii.com>
Fri, 9 Sep 2022 18:16:44 +0000 (14:16 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Wed, 4 Jan 2023 15:28:36 +0000 (10:28 -0500)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

sdk/cwl/arvados_cwl/__init__.py
sdk/cwl/setup.py

index 7818ac84f44e0646e09ebc25c940899ec4240695..20eed989cc0f05c19e79e8e0ecd2df4dece977c6 100644 (file)
@@ -212,6 +212,10 @@ def arg_parser():  # type: () -> argparse.ArgumentParser
                         action="store_true", default=False,
                         help=argparse.SUPPRESS)
 
+    parser.add_argument("--fast-parser", dest="fast_parser",
+                        action="store_true", default=False,
+                        help=argparse.SUPPRESS)
+
     parser.add_argument("--thread-count", type=int,
                         default=0, help="Number of threads to use for job submit and output collection.")
 
index e1a5077fb84c29e5b5a8a333a3bcacd1aaa4abd1..8d1cbd237286f29491d9f30edabeb17ee9117b4b 100644 (file)
@@ -36,8 +36,8 @@ setup(name='arvados-cwl-runner',
       # file to determine what version of cwltool and schema-salad to
       # build.
       install_requires=[
-          'cwltool==3.1.20220907141119',
-          'schema-salad==8.3.20220913105718',
+          'cwltool==3.1.20220909180746',
+          'schema-salad==8.3.20220825114525',
           'arvados-python-client{}'.format(pysdk_dep),
           'ciso8601 >= 2.0.0',
           'networkx < 2.6',