toil 8.2.0__tar.gz → 9.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (617) hide show
  1. {toil-8.2.0 → toil-9.1.0}/.github/workflows/codeql-analysis.yml +1 -1
  2. {toil-8.2.0 → toil-9.1.0}/.gitlab-ci.yml +31 -31
  3. {toil-8.2.0 → toil-9.1.0}/Makefile +23 -11
  4. {toil-8.2.0 → toil-9.1.0}/PKG-INFO +32 -32
  5. {toil-8.2.0 → toil-9.1.0}/contrib/admin/cleanup_aws_resources.py +5 -2
  6. {toil-8.2.0 → toil-9.1.0}/contrib/admin/mypy-with-ignore.py +2 -6
  7. {toil-8.2.0 → toil-9.1.0}/docker/Dockerfile.py +33 -15
  8. {toil-8.2.0 → toil-9.1.0}/docs/appendices/aws_min_permissions.rst +0 -1
  9. {toil-8.2.0 → toil-9.1.0}/docs/cwl/conformance.rst +12 -0
  10. {toil-8.2.0 → toil-9.1.0}/docs/cwl/running.rst +2 -2
  11. {toil-8.2.0 → toil-9.1.0}/docs/gettingStarted/quickStart.rst +65 -2
  12. {toil-8.2.0 → toil-9.1.0}/docs/running/cliOptions.rst +2 -1
  13. {toil-8.2.0 → toil-9.1.0}/docs/wdl/running.rst +34 -0
  14. {toil-8.2.0 → toil-9.1.0}/requirements-aws.txt +1 -1
  15. {toil-8.2.0 → toil-9.1.0}/requirements-cwl.txt +3 -3
  16. {toil-8.2.0 → toil-9.1.0}/requirements-dev.txt +6 -4
  17. {toil-8.2.0 → toil-9.1.0}/requirements-google.txt +1 -1
  18. {toil-8.2.0 → toil-9.1.0}/requirements-kubernetes.txt +1 -1
  19. toil-9.1.0/requirements-server.txt +8 -0
  20. {toil-8.2.0 → toil-9.1.0}/requirements-wdl.txt +1 -1
  21. {toil-8.2.0 → toil-9.1.0}/requirements.txt +1 -1
  22. {toil-8.2.0 → toil-9.1.0}/setup.cfg +1 -0
  23. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/abstractBatchSystem.py +13 -5
  24. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/abstractGridEngineBatchSystem.py +17 -5
  25. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/kubernetes.py +13 -2
  26. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/mesos/batchSystem.py +33 -2
  27. toil-9.1.0/src/toil/batchSystems/registry.py +136 -0
  28. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/slurm.py +191 -16
  29. {toil-8.2.0 → toil-9.1.0}/src/toil/common.py +20 -1
  30. {toil-8.2.0 → toil-9.1.0}/src/toil/cwl/cwltoil.py +97 -119
  31. {toil-8.2.0 → toil-9.1.0}/src/toil/cwl/utils.py +103 -3
  32. {toil-8.2.0 → toil-9.1.0}/src/toil/fileStores/__init__.py +1 -1
  33. {toil-8.2.0 → toil-9.1.0}/src/toil/fileStores/abstractFileStore.py +5 -2
  34. {toil-8.2.0 → toil-9.1.0}/src/toil/fileStores/cachingFileStore.py +1 -1
  35. {toil-8.2.0 → toil-9.1.0}/src/toil/job.py +30 -14
  36. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/abstractJobStore.py +35 -255
  37. toil-9.1.0/src/toil/jobStores/aws/jobStore.py +1009 -0
  38. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/aws/utils.py +24 -270
  39. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/fileJobStore.py +2 -1
  40. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/googleJobStore.py +32 -13
  41. toil-9.1.0/src/toil/jobStores/utils.py +84 -0
  42. {toil-8.2.0 → toil-9.1.0}/src/toil/leader.py +27 -22
  43. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/accelerators.py +1 -1
  44. toil-9.1.0/src/toil/lib/aws/config.py +22 -0
  45. toil-9.1.0/src/toil/lib/aws/s3.py +499 -0
  46. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/aws/utils.py +22 -33
  47. toil-9.1.0/src/toil/lib/checksum.py +88 -0
  48. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/conversions.py +33 -31
  49. toil-9.1.0/src/toil/lib/directory.py +217 -0
  50. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/ec2.py +97 -29
  51. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/exceptions.py +2 -1
  52. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/expando.py +2 -2
  53. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/generatedEC2Lists.py +138 -19
  54. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/io.py +33 -2
  55. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/memoize.py +21 -7
  56. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/misc.py +1 -1
  57. toil-8.2.0/src/toil/jobStores/utils.py → toil-9.1.0/src/toil/lib/pipes.py +96 -122
  58. toil-9.1.0/src/toil/lib/plugins.py +106 -0
  59. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/retry.py +1 -1
  60. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/threading.py +1 -1
  61. toil-9.1.0/src/toil/lib/url.py +320 -0
  62. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/web.py +4 -5
  63. {toil-8.2.0 → toil-9.1.0}/src/toil/options/cwl.py +13 -1
  64. {toil-8.2.0 → toil-9.1.0}/src/toil/options/runner.py +17 -10
  65. {toil-8.2.0 → toil-9.1.0}/src/toil/options/wdl.py +12 -1
  66. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/__init__.py +5 -2
  67. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/aws/__init__.py +43 -36
  68. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/aws/awsProvisioner.py +47 -15
  69. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/node.py +60 -12
  70. {toil-8.2.0 → toil-9.1.0}/src/toil/resource.py +3 -13
  71. {toil-8.2.0 → toil-9.1.0}/src/toil/server/app.py +12 -6
  72. {toil-8.2.0 → toil-9.1.0}/src/toil/server/cli/wes_cwl_runner.py +2 -2
  73. {toil-8.2.0 → toil-9.1.0}/src/toil/server/wes/abstract_backend.py +21 -43
  74. {toil-8.2.0 → toil-9.1.0}/src/toil/server/wes/toil_backend.py +2 -2
  75. {toil-8.2.0 → toil-9.1.0}/src/toil/test/__init__.py +16 -18
  76. {toil-8.2.0 → toil-9.1.0}/src/toil/test/batchSystems/batchSystemTest.py +2 -9
  77. {toil-8.2.0 → toil-9.1.0}/src/toil/test/batchSystems/batch_system_plugin_test.py +7 -0
  78. {toil-8.2.0 → toil-9.1.0}/src/toil/test/batchSystems/test_slurm.py +103 -14
  79. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/cwlTest.py +181 -8
  80. toil-9.1.0/src/toil/test/cwl/staging_cat.cwl +27 -0
  81. toil-9.1.0/src/toil/test/cwl/staging_make_file.cwl +25 -0
  82. toil-9.1.0/src/toil/test/cwl/staging_workflow.cwl +43 -0
  83. toil-9.1.0/src/toil/test/cwl/zero_default.cwl +61 -0
  84. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_staging.py +17 -8
  85. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scriptsTest.py +2 -1
  86. {toil-8.2.0 → toil-9.1.0}/src/toil/test/jobStores/jobStoreTest.py +23 -133
  87. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/aws/test_iam.py +7 -7
  88. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/aws/test_s3.py +30 -33
  89. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/aws/test_utils.py +9 -9
  90. toil-9.1.0/src/toil/test/lib/test_url.py +69 -0
  91. toil-9.1.0/src/toil/test/lib/url_plugin_test.py +105 -0
  92. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/aws/awsProvisionerTest.py +60 -7
  93. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/clusterTest.py +15 -2
  94. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/gceProvisionerTest.py +1 -1
  95. {toil-8.2.0 → toil-9.1.0}/src/toil/test/server/serverTest.py +78 -36
  96. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/autoDeploymentTest.py +2 -3
  97. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/fileStoreTest.py +89 -87
  98. toil-9.1.0/src/toil/test/utils/ABCWorkflowDebug/ABC.txt +1 -0
  99. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/ABCWorkflowDebug/debugWorkflow.py +4 -4
  100. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/toilKillTest.py +35 -28
  101. toil-9.1.0/src/toil/test/wdl/md5sum/md5sum-gs.json +1 -0
  102. toil-9.1.0/src/toil/test/wdl/md5sum/md5sum.json +1 -0
  103. toil-9.1.0/src/toil/test/wdl/testfiles/read_file.wdl +18 -0
  104. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/url_to_optional_file.wdl +2 -1
  105. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdltoil_test.py +171 -162
  106. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdltoil_test_kubernetes.py +9 -0
  107. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilDebugFile.py +6 -3
  108. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilSshCluster.py +23 -0
  109. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilStats.py +17 -2
  110. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilUpdateEC2Instances.py +1 -0
  111. toil-9.1.0/src/toil/version.py +14 -0
  112. {toil-8.2.0 → toil-9.1.0}/src/toil/wdl/wdltoil.py +1179 -825
  113. {toil-8.2.0 → toil-9.1.0}/src/toil/worker.py +16 -8
  114. {toil-8.2.0 → toil-9.1.0}/src/toil.egg-info/PKG-INFO +32 -32
  115. {toil-8.2.0 → toil-9.1.0}/src/toil.egg-info/SOURCES.txt +14 -2
  116. {toil-8.2.0 → toil-9.1.0}/src/toil.egg-info/requires.txt +31 -31
  117. {toil-8.2.0 → toil-9.1.0}/version_template.py +1 -1
  118. toil-8.2.0/requirements-server.txt +0 -8
  119. toil-8.2.0/src/toil/batchSystems/registry.py +0 -239
  120. toil-8.2.0/src/toil/jobStores/aws/jobStore.py +0 -2109
  121. toil-8.2.0/src/toil/lib/aws/s3.py +0 -31
  122. toil-8.2.0/src/toil/lib/iterables.py +0 -112
  123. toil-8.2.0/src/toil/test/docs/scripts/stagingExampleFiles/in.txt +0 -1
  124. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum-gs.json +0 -1
  125. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.json +0 -1
  126. toil-8.2.0/src/toil/version.py +0 -14
  127. {toil-8.2.0 → toil-9.1.0}/.git-blame-ignore-revs +0 -0
  128. {toil-8.2.0 → toil-9.1.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  129. {toil-8.2.0 → toil-9.1.0}/.github/dependabot.yml +0 -0
  130. {toil-8.2.0 → toil-9.1.0}/.gitignore +0 -0
  131. {toil-8.2.0 → toil-9.1.0}/.readthedocs.yaml +0 -0
  132. {toil-8.2.0 → toil-9.1.0}/CODE_OF_CONDUCT.md +0 -0
  133. {toil-8.2.0 → toil-9.1.0}/CONTRIBUTING.md +0 -0
  134. {toil-8.2.0 → toil-9.1.0}/LICENSE +0 -0
  135. {toil-8.2.0 → toil-9.1.0}/MANIFEST.in +0 -0
  136. {toil-8.2.0 → toil-9.1.0}/README.rst +0 -0
  137. {toil-8.2.0 → toil-9.1.0}/ROADMAP.md +0 -0
  138. {toil-8.2.0 → toil-9.1.0}/attic/README.md +0 -0
  139. {toil-8.2.0 → toil-9.1.0}/attic/absolute_imports.py +0 -0
  140. {toil-8.2.0 → toil-9.1.0}/attic/jobTreeSlides.pdf +0 -0
  141. {toil-8.2.0 → toil-9.1.0}/attic/toil-sort-example.py +0 -0
  142. {toil-8.2.0 → toil-9.1.0}/common.mk +0 -0
  143. {toil-8.2.0 → toil-9.1.0}/contrib/admin/buildkit-deployment.yml +0 -0
  144. {toil-8.2.0 → toil-9.1.0}/contrib/admin/remove_trailing_whitespace.py +0 -0
  145. {toil-8.2.0 → toil-9.1.0}/contrib/admin/test-pr +0 -0
  146. {toil-8.2.0 → toil-9.1.0}/contrib/admin/wheel-of-issues +0 -0
  147. {toil-8.2.0 → toil-9.1.0}/contrib/assets/toil-slug-logo-wordmark-2022.svg +0 -0
  148. {toil-8.2.0 → toil-9.1.0}/contrib/hooks/lib.py +0 -0
  149. {toil-8.2.0 → toil-9.1.0}/contrib/hooks/mypy-after-commit.py +0 -0
  150. {toil-8.2.0 → toil-9.1.0}/contrib/hooks/mypy-before-push.py +0 -0
  151. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/configargparse/__init__.pyi +0 -0
  152. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/configargparse/configargparse.pyi +0 -0
  153. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/dill/__init__.pyi +0 -0
  154. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/dill/_dill.pyi +0 -0
  155. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/__init__.pyi +0 -0
  156. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/__init__.pyi +0 -0
  157. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/annotations.pyi +0 -0
  158. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/callables.pyi +0 -0
  159. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/listener.pyi +0 -0
  160. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/notificationmgr.pyi +0 -0
  161. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/publisher.pyi +0 -0
  162. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topicargspec.pyi +0 -0
  163. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topicdefnprovider.pyi +0 -0
  164. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topicexc.pyi +0 -0
  165. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topicmgr.pyi +0 -0
  166. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topicobj.pyi +0 -0
  167. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topictreetraverser.pyi +0 -0
  168. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/topicutils.pyi +0 -0
  169. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/core/weakmethod.pyi +0 -0
  170. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/pub.pyi +0 -0
  171. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/utils/__init__.pyi +0 -0
  172. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/utils/exchandling.pyi +0 -0
  173. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/utils/misc.pyi +0 -0
  174. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/utils/notification.pyi +0 -0
  175. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/utils/topictreeprinter.pyi +0 -0
  176. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/pubsub/utils/xmltopicdefnprovider.pyi +0 -0
  177. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/tes/__init__.py +0 -0
  178. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/tes/client.pyi +0 -0
  179. {toil-8.2.0 → toil-9.1.0}/contrib/mypy-stubs/tes/models.pyi +0 -0
  180. {toil-8.2.0 → toil-9.1.0}/contrib/pod-murder-bot/murder.yaml +0 -0
  181. {toil-8.2.0 → toil-9.1.0}/contrib/pod-murder-bot/podKiller.sh +0 -0
  182. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/check_out.sh +0 -0
  183. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/docker-compose.yml +0 -0
  184. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/expected_out_basic.txt +0 -0
  185. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/expected_out_sort.txt +0 -0
  186. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/fileToSort.txt +0 -0
  187. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/slurm.conf +0 -0
  188. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/slurm_test.sh +0 -0
  189. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/sort.py +0 -0
  190. {toil-8.2.0 → toil-9.1.0}/contrib/slurm-test/toil_workflow.py +0 -0
  191. {toil-8.2.0 → toil-9.1.0}/contrib/toil-ci-prebake/Dockerfile +0 -0
  192. {toil-8.2.0 → toil-9.1.0}/contrib/toil-cwl-runner/README.rst +0 -0
  193. {toil-8.2.0 → toil-9.1.0}/contrib/toil-cwl-runner/pyproject.toml +0 -0
  194. {toil-8.2.0 → toil-9.1.0}/contrib/toil-cwl-runner/setup.cfg +0 -0
  195. {toil-8.2.0 → toil-9.1.0}/dashboard/grafana/Dockerfile +0 -0
  196. {toil-8.2.0 → toil-9.1.0}/dashboard/grafana/toil_dashboard.json +0 -0
  197. {toil-8.2.0 → toil-9.1.0}/dashboard/mtail/Dockerfile +0 -0
  198. {toil-8.2.0 → toil-9.1.0}/dashboard/mtail/toil.mtail +0 -0
  199. {toil-8.2.0 → toil-9.1.0}/dashboard/prometheus/Dockerfile +0 -0
  200. {toil-8.2.0 → toil-9.1.0}/dashboard/prometheus/prometheus.yml +0 -0
  201. {toil-8.2.0 → toil-9.1.0}/dashboard/prometheus/run.sh +0 -0
  202. {toil-8.2.0 → toil-9.1.0}/docker/customDockerInit.sh +0 -0
  203. {toil-8.2.0 → toil-9.1.0}/docker/extra-debs.tsv +0 -0
  204. {toil-8.2.0 → toil-9.1.0}/docker/singularity-wrapper.sh +0 -0
  205. {toil-8.2.0 → toil-9.1.0}/docker/waitForKey.sh +0 -0
  206. {toil-8.2.0 → toil-9.1.0}/docs/Makefile +0 -0
  207. {toil-8.2.0 → toil-9.1.0}/docs/_static/favicon.ico +0 -0
  208. {toil-8.2.0 → toil-9.1.0}/docs/_static/logo.jpeg +0 -0
  209. {toil-8.2.0 → toil-9.1.0}/docs/_static/shortcut.png +0 -0
  210. {toil-8.2.0 → toil-9.1.0}/docs/appendices/architecture.rst +0 -0
  211. {toil-8.2.0 → toil-9.1.0}/docs/appendices/caching_benefits.png +0 -0
  212. {toil-8.2.0 → toil-9.1.0}/docs/appendices/deploy.rst +0 -0
  213. {toil-8.2.0 → toil-9.1.0}/docs/appendices/environment_vars.rst +0 -0
  214. {toil-8.2.0 → toil-9.1.0}/docs/appendices/toil_architecture.png +0 -0
  215. {toil-8.2.0 → toil-9.1.0}/docs/conf.py +0 -0
  216. {toil-8.2.0 → toil-9.1.0}/docs/contributing/checklists.rst +0 -0
  217. {toil-8.2.0 → toil-9.1.0}/docs/contributing/contributing.rst +0 -0
  218. {toil-8.2.0 → toil-9.1.0}/docs/cwl/introduction.rst +0 -0
  219. {toil-8.2.0 → toil-9.1.0}/docs/gettingStarted/googleScreenShot.png +0 -0
  220. {toil-8.2.0 → toil-9.1.0}/docs/gettingStarted/googleScreenShot2.png +0 -0
  221. {toil-8.2.0 → toil-9.1.0}/docs/gettingStarted/install.rst +0 -0
  222. {toil-8.2.0 → toil-9.1.0}/docs/index.rst +0 -0
  223. {toil-8.2.0 → toil-9.1.0}/docs/python/developing.rst +0 -0
  224. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPI.rst +0 -0
  225. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIBatchsystem.rst +0 -0
  226. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIExceptions.rst +0 -0
  227. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIFilestore.rst +0 -0
  228. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIJobFunctions.rst +0 -0
  229. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIJobstore.rst +0 -0
  230. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIMethods.rst +0 -0
  231. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIRunner.rst +0 -0
  232. {toil-8.2.0 → toil-9.1.0}/docs/python/toilAPIService.rst +0 -0
  233. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/amazon.rst +0 -0
  234. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/amazonaddkeypair.png +0 -0
  235. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/cloud.rst +0 -0
  236. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/clusterUtils.rst +0 -0
  237. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/dashboard_screenshot.png +0 -0
  238. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/gce.rst +0 -0
  239. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/googleScreenShot.png +0 -0
  240. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/googleScreenShot2.png +0 -0
  241. {toil-8.2.0 → toil-9.1.0}/docs/running/cloud/kubernetes.rst +0 -0
  242. {toil-8.2.0 → toil-9.1.0}/docs/running/debugging.rst +0 -0
  243. {toil-8.2.0 → toil-9.1.0}/docs/running/hpcEnvironments.rst +0 -0
  244. {toil-8.2.0 → toil-9.1.0}/docs/running/introduction.rst +0 -0
  245. {toil-8.2.0 → toil-9.1.0}/docs/running/server/docker-compose.yml +0 -0
  246. {toil-8.2.0 → toil-9.1.0}/docs/running/server/wes.rst +0 -0
  247. {toil-8.2.0 → toil-9.1.0}/docs/running/utils.rst +0 -0
  248. {toil-8.2.0 → toil-9.1.0}/docs/vendor/sphinxcontrib/__init__.py +0 -0
  249. {toil-8.2.0 → toil-9.1.0}/docs/vendor/sphinxcontrib/fulltoc.py +0 -0
  250. {toil-8.2.0 → toil-9.1.0}/docs/wdl/conformance.rst +0 -0
  251. {toil-8.2.0 → toil-9.1.0}/docs/wdl/developing.rst +0 -0
  252. {toil-8.2.0 → toil-9.1.0}/docs/wdl/introduction.rst +0 -0
  253. {toil-8.2.0 → toil-9.1.0}/docs/wdl/tutorial.rst +0 -0
  254. {toil-8.2.0 → toil-9.1.0}/pyproject.toml +0 -0
  255. {toil-8.2.0 → toil-9.1.0}/requirements-encryption.txt +0 -0
  256. {toil-8.2.0 → toil-9.1.0}/requirements-htcondor.txt +0 -0
  257. {toil-8.2.0 → toil-9.1.0}/requirements-mesos.txt +0 -0
  258. {toil-8.2.0 → toil-9.1.0}/setup.py +0 -0
  259. {toil-8.2.0 → toil-9.1.0}/setup_gitlab_docker.py +0 -0
  260. {toil-8.2.0 → toil-9.1.0}/setup_gitlab_ssh.py +0 -0
  261. {toil-8.2.0 → toil-9.1.0}/src/toil/__init__.py +0 -0
  262. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/__init__.py +0 -0
  263. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/awsBatch.py +0 -0
  264. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/cleanup_support.py +0 -0
  265. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/contained_executor.py +0 -0
  266. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/gridengine.py +0 -0
  267. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/htcondor.py +0 -0
  268. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/local_support.py +0 -0
  269. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/lsf.py +0 -0
  270. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/lsfHelper.py +0 -0
  271. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/mesos/__init__.py +0 -0
  272. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/mesos/conftest.py +0 -0
  273. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/mesos/executor.py +0 -0
  274. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/mesos/test/__init__.py +0 -0
  275. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/options.py +0 -0
  276. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/singleMachine.py +0 -0
  277. {toil-8.2.0 → toil-9.1.0}/src/toil/batchSystems/torque.py +0 -0
  278. {toil-8.2.0 → toil-9.1.0}/src/toil/bus.py +0 -0
  279. {toil-8.2.0 → toil-9.1.0}/src/toil/cwl/__init__.py +0 -0
  280. {toil-8.2.0 → toil-9.1.0}/src/toil/cwl/conftest.py +0 -0
  281. {toil-8.2.0 → toil-9.1.0}/src/toil/deferred.py +0 -0
  282. {toil-8.2.0 → toil-9.1.0}/src/toil/exceptions.py +0 -0
  283. {toil-8.2.0 → toil-9.1.0}/src/toil/fileStores/nonCachingFileStore.py +0 -0
  284. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/__init__.py +0 -0
  285. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/aws/__init__.py +0 -0
  286. {toil-8.2.0 → toil-9.1.0}/src/toil/jobStores/conftest.py +0 -0
  287. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/__init__.py +0 -0
  288. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/aws/__init__.py +0 -0
  289. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/aws/ami.py +0 -0
  290. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/aws/iam.py +0 -0
  291. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/aws/session.py +0 -0
  292. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/aws/utils.py.orig +0 -0
  293. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/bioio.py +0 -0
  294. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/compatibility.py +0 -0
  295. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/docker.py +0 -0
  296. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/dockstore.py +0 -0
  297. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/ec2nodes.py +0 -0
  298. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/encryption/__init__.py +0 -0
  299. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/encryption/_dummy.py +0 -0
  300. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/encryption/_nacl.py +0 -0
  301. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/encryption/conftest.py +0 -0
  302. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/ftp_utils.py +0 -0
  303. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/history.py +0 -0
  304. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/history_submission.py +0 -0
  305. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/humanize.py +0 -0
  306. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/objects.py +0 -0
  307. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/resources.py +0 -0
  308. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/throttle.py +0 -0
  309. {toil-8.2.0 → toil-9.1.0}/src/toil/lib/trs.py +0 -0
  310. {toil-8.2.0 → toil-9.1.0}/src/toil/options/__init__.py +0 -0
  311. {toil-8.2.0 → toil-9.1.0}/src/toil/options/common.py +0 -0
  312. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/abstractProvisioner.py +0 -0
  313. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/clusterScaler.py +0 -0
  314. {toil-8.2.0 → toil-9.1.0}/src/toil/provisioners/gceProvisioner.py +0 -0
  315. {toil-8.2.0 → toil-9.1.0}/src/toil/realtimeLogger.py +0 -0
  316. {toil-8.2.0 → toil-9.1.0}/src/toil/server/__init__.py +0 -0
  317. {toil-8.2.0 → toil-9.1.0}/src/toil/server/api_spec/LICENSE +0 -0
  318. {toil-8.2.0 → toil-9.1.0}/src/toil/server/api_spec/README.rst +0 -0
  319. {toil-8.2.0 → toil-9.1.0}/src/toil/server/api_spec/__init__.py +0 -0
  320. {toil-8.2.0 → toil-9.1.0}/src/toil/server/api_spec/workflow_execution_service.swagger.yaml +0 -0
  321. {toil-8.2.0 → toil-9.1.0}/src/toil/server/celery_app.py +0 -0
  322. {toil-8.2.0 → toil-9.1.0}/src/toil/server/cli/__init__.py +0 -0
  323. {toil-8.2.0 → toil-9.1.0}/src/toil/server/utils.py +0 -0
  324. {toil-8.2.0 → toil-9.1.0}/src/toil/server/wes/__init__.py +0 -0
  325. {toil-8.2.0 → toil-9.1.0}/src/toil/server/wes/amazon_wes_utils.py +0 -0
  326. {toil-8.2.0 → toil-9.1.0}/src/toil/server/wes/tasks.py +0 -0
  327. {toil-8.2.0 → toil-9.1.0}/src/toil/server/wsgi_app.py +0 -0
  328. {toil-8.2.0 → toil-9.1.0}/src/toil/serviceManager.py +0 -0
  329. {toil-8.2.0 → toil-9.1.0}/src/toil/statsAndLogging.py +0 -0
  330. {toil-8.2.0 → toil-9.1.0}/src/toil/test/batchSystems/__init__.py +0 -0
  331. {toil-8.2.0 → toil-9.1.0}/src/toil/test/batchSystems/test_gridengine.py +0 -0
  332. {toil-8.2.0 → toil-9.1.0}/src/toil/test/batchSystems/test_lsf_helper.py +0 -0
  333. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cactus/__init__.py +0 -0
  334. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cactus/pestis.tar.gz +0 -0
  335. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cactus/test_cactus_integration.py +0 -0
  336. {toil-8.2.0 → toil-9.1.0}/src/toil/test/conftest.py +0 -0
  337. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/2.fasta +0 -0
  338. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/2.fastq +0 -0
  339. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/__init__.py +0 -0
  340. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/alwaysfails.cwl +0 -0
  341. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/colon_test_output.cwl +0 -0
  342. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/colon_test_output_job.yaml +0 -0
  343. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/conditional_wf.cwl +0 -0
  344. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/conditional_wf.yaml +0 -0
  345. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/conftest.py +0 -0
  346. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/directory/directory/file.txt +0 -0
  347. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/directory_from_directory.cwl +0 -0
  348. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download.cwl +0 -0
  349. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_directory.cwl +0 -0
  350. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_directory_file.json +0 -0
  351. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_directory_s3.json +0 -0
  352. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_file.json +0 -0
  353. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_http.json +0 -0
  354. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_https.json +0 -0
  355. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_s3.json +0 -0
  356. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_subdirectory.cwl +0 -0
  357. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_subdirectory_file.json +0 -0
  358. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/download_subdirectory_s3.json +0 -0
  359. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/echo-stderr.cwl +0 -0
  360. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/echo-stdout-log-dir.cwl +0 -0
  361. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/echo.cwl +0 -0
  362. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/echo_string.cwl +0 -0
  363. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/echo_string_scatter_capture_stdout.cwl +0 -0
  364. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/empty.json +0 -0
  365. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/file_from_directory.cwl +0 -0
  366. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/glob_dir.cwl +0 -0
  367. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/load_contents.cwl +0 -0
  368. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/measure_default_memory.cwl +0 -0
  369. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/mock_mpi/fake_mpi.yml +0 -0
  370. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/mock_mpi/fake_mpi_run.py +0 -0
  371. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/mpi_simple.cwl +0 -0
  372. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/not_run_required_input.cwl +0 -0
  373. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/nvidia_smi.cwl +0 -0
  374. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/optional-file-exists.json +0 -0
  375. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/optional-file-missing.json +0 -0
  376. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/optional-file.cwl +0 -0
  377. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/preemptible.cwl +0 -0
  378. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/preemptible_expression.cwl +0 -0
  379. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/preemptible_expression.json +0 -0
  380. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/revsort-job-missing.json +0 -0
  381. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/revsort-job.json +0 -0
  382. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/revsort.cwl +0 -0
  383. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/revsort2.cwl +0 -0
  384. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/revtool.cwl +0 -0
  385. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/revtool2.cwl +0 -0
  386. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/s3_secondary_file.cwl +0 -0
  387. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/s3_secondary_file.json +0 -0
  388. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/scatter_duplicate_outputs.cwl +0 -0
  389. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/seqtk_seq.cwl +0 -0
  390. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/seqtk_seq_job.json +0 -0
  391. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/sorttool.cwl +0 -0
  392. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/stream.cwl +0 -0
  393. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/stream.json +0 -0
  394. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_detection.cwl +0 -0
  395. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_detection_at_root.cwl +0 -0
  396. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.cwl +0 -0
  397. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.dat +0 -0
  398. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f0 +0 -0
  399. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f1 +0 -0
  400. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f1i +0 -0
  401. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f2 +0 -0
  402. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f2_TSM0 +0 -0
  403. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f3 +0 -0
  404. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f3_TSM0 +0 -0
  405. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f4 +0 -0
  406. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f4_TSM0 +0 -0
  407. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f5 +0 -0
  408. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.info +0 -0
  409. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.lock +0 -0
  410. {toil-8.2.0 → toil-9.1.0}/src/toil/test/cwl/whale.txt +0 -0
  411. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/__init__.py +0 -0
  412. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/example_alwaysfail.py +0 -0
  413. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/example_alwaysfail_with_files.wdl +0 -0
  414. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/example_cachingbenchmark.py +0 -0
  415. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/stagingExampleFiles/out.txt +0 -0
  416. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_arguments.py +0 -0
  417. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_debugging.patch +0 -0
  418. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_debugging_hangs.wdl +0 -0
  419. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_debugging_works.wdl +0 -0
  420. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_docker.py +0 -0
  421. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_dynamic.py +0 -0
  422. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_encapsulation.py +0 -0
  423. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_encapsulation2.py +0 -0
  424. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_helloworld.py +0 -0
  425. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_invokeworkflow.py +0 -0
  426. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_invokeworkflow2.py +0 -0
  427. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_jobfunctions.py +0 -0
  428. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_managing.py +0 -0
  429. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_managing2.py +0 -0
  430. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_multiplejobs.py +0 -0
  431. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_multiplejobs2.py +0 -0
  432. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_multiplejobs3.py +0 -0
  433. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_promises.py +0 -0
  434. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_promises2.py +0 -0
  435. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_quickstart.py +0 -0
  436. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_requirements.py +0 -0
  437. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_services.py +0 -0
  438. {toil-8.2.0 → toil-9.1.0}/src/toil/test/docs/scripts/tutorial_stats.py +0 -0
  439. {toil-8.2.0 → toil-9.1.0}/src/toil/test/jobStores/__init__.py +0 -0
  440. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/__init__.py +0 -0
  441. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/aws/__init__.py +0 -0
  442. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/dockerTest.py +0 -0
  443. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/test_conversions.py +0 -0
  444. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/test_ec2.py +0 -0
  445. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/test_history.py +0 -0
  446. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/test_misc.py +0 -0
  447. {toil-8.2.0 → toil-9.1.0}/src/toil/test/lib/test_trs.py +0 -0
  448. {toil-8.2.0 → toil-9.1.0}/src/toil/test/mesos/MesosDataStructuresTest.py +0 -0
  449. {toil-8.2.0 → toil-9.1.0}/src/toil/test/mesos/__init__.py +0 -0
  450. {toil-8.2.0 → toil-9.1.0}/src/toil/test/mesos/helloWorld.py +0 -0
  451. {toil-8.2.0 → toil-9.1.0}/src/toil/test/mesos/stress.py +0 -0
  452. {toil-8.2.0 → toil-9.1.0}/src/toil/test/options/__init__.py +0 -0
  453. {toil-8.2.0 → toil-9.1.0}/src/toil/test/options/options.py +0 -0
  454. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/__init__.py +0 -0
  455. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/aws/__init__.py +0 -0
  456. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/clusterScalerTest.py +0 -0
  457. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/provisionerTest.py +0 -0
  458. {toil-8.2.0 → toil-9.1.0}/src/toil/test/provisioners/restartScript.py +0 -0
  459. {toil-8.2.0 → toil-9.1.0}/src/toil/test/server/__init__.py +0 -0
  460. {toil-8.2.0 → toil-9.1.0}/src/toil/test/sort/__init__.py +0 -0
  461. {toil-8.2.0 → toil-9.1.0}/src/toil/test/sort/restart_sort.py +0 -0
  462. {toil-8.2.0 → toil-9.1.0}/src/toil/test/sort/sort.py +0 -0
  463. {toil-8.2.0 → toil-9.1.0}/src/toil/test/sort/sortTest.py +0 -0
  464. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/__init__.py +0 -0
  465. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/busTest.py +0 -0
  466. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/checkpointTest.py +0 -0
  467. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/deferredFunctionTest.py +0 -0
  468. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/dockerCheckTest.py +0 -0
  469. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/environmentTest.py +0 -0
  470. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/helloWorldTest.py +0 -0
  471. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/importExportFileTest.py +0 -0
  472. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/jobDescriptionTest.py +0 -0
  473. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/jobEncapsulationTest.py +0 -0
  474. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/jobFileStoreTest.py +0 -0
  475. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/jobServiceTest.py +0 -0
  476. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/jobTest.py +0 -0
  477. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/miscTests.py +0 -0
  478. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/promisedRequirementTest.py +0 -0
  479. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/promisesTest.py +0 -0
  480. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/realtimeLoggerTest.py +0 -0
  481. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/regularLogTest.py +0 -0
  482. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/resourceTest.py +0 -0
  483. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/restartDAGTest.py +0 -0
  484. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/resumabilityTest.py +0 -0
  485. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/retainTempDirTest.py +0 -0
  486. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/systemTest.py +0 -0
  487. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/threadingTest.py +0 -0
  488. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/toilContextManagerTest.py +0 -0
  489. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/userDefinedJobArgTypeTest.py +0 -0
  490. {toil-8.2.0 → toil-9.1.0}/src/toil/test/src/workerTest.py +0 -0
  491. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/ABCWorkflowDebug/B_file.txt +0 -0
  492. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/ABCWorkflowDebug/mkFile.py +0 -0
  493. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/ABCWorkflowDebug/sleep.cwl +0 -0
  494. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/ABCWorkflowDebug/sleep.yaml +0 -0
  495. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/__init__.py +0 -0
  496. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/toilDebugTest.py +0 -0
  497. {toil-8.2.0 → toil-9.1.0}/src/toil/test/utils/utilsTest.py +0 -0
  498. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/__init__.py +0 -0
  499. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/lint_error.wdl +0 -0
  500. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/md5sum/empty_file.json +0 -0
  501. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/md5sum/md5sum.1.0.wdl +0 -0
  502. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/md5sum/md5sum.input +0 -0
  503. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/md5sum/md5sum.wdl +0 -0
  504. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/miniwdl_self_test/inputs-namespaced.json +0 -0
  505. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/miniwdl_self_test/inputs.json +0 -0
  506. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/miniwdl_self_test/self_test.wdl +0 -0
  507. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/as_map.json +0 -0
  508. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/as_map_as_input.wdl +0 -0
  509. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/as_pairs.json +0 -0
  510. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/as_pairs_as_input.wdl +0 -0
  511. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/ceil.json +0 -0
  512. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/ceil_as_command.wdl +0 -0
  513. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/ceil_as_input.wdl +0 -0
  514. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/collect_by_key.json +0 -0
  515. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/collect_by_key_as_input.wdl +0 -0
  516. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/cross.json +0 -0
  517. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/cross_as_input.wdl +0 -0
  518. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/flatten.json +0 -0
  519. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/flatten_as_input.wdl +0 -0
  520. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/floor.json +0 -0
  521. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/floor_as_command.wdl +0 -0
  522. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/floor_as_input.wdl +0 -0
  523. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/keys.json +0 -0
  524. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/keys_as_input.wdl +0 -0
  525. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/length.json +0 -0
  526. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/length_as_input.wdl +0 -0
  527. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/length_as_input_with_map.json +0 -0
  528. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/length_as_input_with_map.wdl +0 -0
  529. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/length_invalid.json +0 -0
  530. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/range.json +0 -0
  531. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/range_0.json +0 -0
  532. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/range_as_input.wdl +0 -0
  533. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/range_invalid.json +0 -0
  534. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_boolean.json +0 -0
  535. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_boolean_as_command.wdl +0 -0
  536. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_float.json +0 -0
  537. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_float_as_command.wdl +0 -0
  538. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_int.json +0 -0
  539. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_int_as_command.wdl +0 -0
  540. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_json.json +0 -0
  541. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_json_as_output.wdl +0 -0
  542. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_lines.json +0 -0
  543. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_lines_as_output.wdl +0 -0
  544. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_map.json +0 -0
  545. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_map_as_output.wdl +0 -0
  546. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_string.json +0 -0
  547. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_string_as_command.wdl +0 -0
  548. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_tsv.json +0 -0
  549. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/read_tsv_as_output.wdl +0 -0
  550. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/round.json +0 -0
  551. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/round_as_command.wdl +0 -0
  552. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/round_as_input.wdl +0 -0
  553. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/size.json +0 -0
  554. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/size_as_command.wdl +0 -0
  555. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/size_as_output.wdl +0 -0
  556. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/stderr.json +0 -0
  557. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/stderr_as_output.wdl +0 -0
  558. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/stdout.json +0 -0
  559. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/stdout_as_output.wdl +0 -0
  560. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/sub.json +0 -0
  561. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/sub_as_input.wdl +0 -0
  562. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/sub_as_input_with_file.wdl +0 -0
  563. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/transpose.json +0 -0
  564. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/transpose_as_input.wdl +0 -0
  565. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_json.json +0 -0
  566. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_json_as_command.wdl +0 -0
  567. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_lines.json +0 -0
  568. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_lines_as_command.wdl +0 -0
  569. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_map.json +0 -0
  570. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_map_as_command.wdl +0 -0
  571. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_tsv.json +0 -0
  572. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/write_tsv_as_command.wdl +0 -0
  573. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/zip.json +0 -0
  574. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/standard_library/zip_as_input.wdl +0 -0
  575. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/test.csv +0 -0
  576. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/test.tsv +0 -0
  577. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/croo.wdl +0 -0
  578. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/drop_files.wdl +0 -0
  579. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/drop_files_subworkflow.wdl +0 -0
  580. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/empty.txt +0 -0
  581. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/not_enough_outputs.wdl +0 -0
  582. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/random.wdl +0 -0
  583. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/string_file_coercion.json +0 -0
  584. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/string_file_coercion.wdl +0 -0
  585. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test.json +0 -0
  586. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test_boolean.txt +0 -0
  587. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test_float.txt +0 -0
  588. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test_int.txt +0 -0
  589. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test_lines.txt +0 -0
  590. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test_map.txt +0 -0
  591. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/test_string.txt +0 -0
  592. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/url_to_file.wdl +0 -0
  593. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/vocab.json +0 -0
  594. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/vocab.wdl +0 -0
  595. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/testfiles/wait.wdl +0 -0
  596. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdl_specification/type_pair.json +0 -0
  597. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdl_specification/type_pair_basic.wdl +0 -0
  598. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdl_specification/type_pair_with_files.wdl +0 -0
  599. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdl_specification/v1_spec.json +0 -0
  600. {toil-8.2.0 → toil-9.1.0}/src/toil/test/wdl/wdl_specification/v1_spec_declaration.wdl +0 -0
  601. {toil-8.2.0 → toil-9.1.0}/src/toil/toilState.py +0 -0
  602. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/__init__.py +0 -0
  603. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilClean.py +0 -0
  604. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilConfig.py +0 -0
  605. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilDebugJob.py +0 -0
  606. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilDestroyCluster.py +0 -0
  607. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilKill.py +0 -0
  608. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilLaunchCluster.py +0 -0
  609. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilMain.py +0 -0
  610. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilRsyncCluster.py +0 -0
  611. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilServer.py +0 -0
  612. {toil-8.2.0 → toil-9.1.0}/src/toil/utils/toilStatus.py +0 -0
  613. {toil-8.2.0 → toil-9.1.0}/src/toil/wdl/__init__.py +0 -0
  614. {toil-8.2.0 → toil-9.1.0}/src/toil/wdl/utils.py +0 -0
  615. {toil-8.2.0 → toil-9.1.0}/src/toil.egg-info/dependency_links.txt +0 -0
  616. {toil-8.2.0 → toil-9.1.0}/src/toil.egg-info/entry_points.txt +0 -0
  617. {toil-8.2.0 → toil-9.1.0}/src/toil.egg-info/top_level.txt +0 -0
@@ -39,7 +39,7 @@ jobs:
39
39
 
40
40
  steps:
41
41
  - name: Checkout repository
42
- uses: actions/checkout@v4
42
+ uses: actions/checkout@v5
43
43
 
44
44
  # Initializes the CodeQL tools for scanning.
45
45
  - name: Initialize CodeQL
@@ -164,7 +164,8 @@ quick_test_offline:
164
164
  make develop extras=[aws,google,wdl]
165
165
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
166
166
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the offline tests"
167
- TOIL_TEST_QUICK=True make test_offline threads="${TEST_THREADS}"
167
+ # Make sure not to run the doctests here because we didn't install all possible extras
168
+ TOIL_TEST_QUICK=True make test_offline tests=src/toil/test threads="${TEST_THREADS}"
168
169
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
169
170
 
170
171
  py39_appliance_build:
@@ -208,8 +209,9 @@ py39_main:
208
209
  python3.9 -m virtualenv venv && . venv/bin/activate && pip install -U pip wheel && make prepare && make develop extras=[all,htcondor]
209
210
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
210
211
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the tests"
211
- make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils"
212
- TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests=src/toil/test/lib
212
+ make doctest threads="${TEST_THREADS}"
213
+ make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils src/toil/test/server"
214
+ TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests="src/toil/test/lib"
213
215
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
214
216
 
215
217
  py310_appliance_build:
@@ -253,8 +255,9 @@ py310_main:
253
255
  python3.10 -m virtualenv venv && . venv/bin/activate && curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 && pip install -U pip wheel && make prepare && pip install pycparser && make develop extras=[all,htcondor]
254
256
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
255
257
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the tests"
256
- make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils"
257
- TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests=src/toil/test/lib
258
+ make doctest threads="${TEST_THREADS}"
259
+ make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils src/toil/test/server"
260
+ TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests="src/toil/test/lib"
258
261
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
259
262
 
260
263
  py311_appliance_build:
@@ -298,8 +301,9 @@ py311_main:
298
301
  python3.11 -m virtualenv venv && . venv/bin/activate && curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11 && pip install -U pip wheel && make prepare && make develop extras=[all,htcondor]
299
302
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
300
303
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the tests"
301
- make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils"
302
- TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests=src/toil/test/lib
304
+ make doctest threads="${TEST_THREADS}"
305
+ make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils src/toil/test/server"
306
+ TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests="src/toil/test/lib"
303
307
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
304
308
 
305
309
  py312_appliance_build:
@@ -343,8 +347,9 @@ py312_main:
343
347
  python3.12 -m virtualenv venv && . venv/bin/activate && curl -sS https://bootstrap.pypa.io/get-pip.py | python3.12 && pip install -U pip wheel && make prepare && make develop extras=[all,htcondor]
344
348
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
345
349
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the tests"
346
- make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils"
347
- TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests=src/toil/test/lib
350
+ make doctest threads="${TEST_THREADS}"
351
+ make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils src/toil/test/server"
352
+ TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests="src/toil/test/lib"
348
353
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
349
354
 
350
355
  py313_appliance_build:
@@ -379,11 +384,11 @@ py313_main:
379
384
  python3.13 -m virtualenv venv && . venv/bin/activate && curl -sS https://bootstrap.pypa.io/get-pip.py | python3.13 && pip install -U pip wheel && make prepare && make develop extras=[all]
380
385
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
381
386
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the tests"
382
- make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils"
383
- TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests=src/toil/test/lib
387
+ make doctest threads="${TEST_THREADS}"
388
+ make test threads="${TEST_THREADS}" tests="src/toil/test/src src/toil/test/utils src/toil/test/server"
389
+ TOIL_SKIP_DOCKER=true make test threads="${TEST_THREADS}" tests="src/toil/test/lib"
384
390
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
385
391
 
386
-
387
392
  slurm_test:
388
393
  rules:
389
394
  - if: $CI_PIPELINE_SOURCE == "schedule"
@@ -420,7 +425,7 @@ cwl_v1.2:
420
425
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
421
426
  # Run CWL integration tests excluded from cwl_misc
422
427
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the tests excluded from cwl_misc"
423
- time make test threads="${TEST_THREADS}" tests="src/toil/test/cwl/cwlTest.py -k '(TestCWLWorkflow or cwl_small) and integrative'"
428
+ time make test threads="${TEST_THREADS}" tests="src/toil/test/cwl/cwlTest.py -k 'integrative and not conformance'"
424
429
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
425
430
  artifacts:
426
431
  reports:
@@ -458,7 +463,7 @@ cwl_badge:
458
463
  rm -rf badges1.2
459
464
  echo -e "\e[0Ksection_end:`date +%s`:download_tests\r\e[0K"
460
465
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the CWL v1.2 conformance tests."
461
- make test tests="src/toil/test/cwl/spec_v12/conformance_tests.cwltest.yaml" threads="${TEST_THREADS}" pytest_args="--cwl-runner-verbose --cwl-badgedir=badges1.2 --junit-xml=in-place-update-conformance-1.2.junit.xml --cwl-args='--relax-path-checks --clean=always --logDebug --statusWait=10 --retryCount=2 --eval-timeout=600 --bypass-file-store'"
466
+ make test tests="src/toil/test/cwl/spec_v12/conformance_tests.cwltest.yaml" threads="${TEST_THREADS}" pytest_args="--randomly-dont-reorganize --cwl-runner-verbose --cwl-badgedir=badges1.2 --junit-xml=in-place-update-conformance-1.2.junit.xml --cwl-args='--relax-path-checks --clean=always --logDebug --statusWait=10 --retryCount=2 --eval-timeout=600 --bypass-file-store'"
462
467
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
463
468
  allow_failure: true
464
469
  artifacts:
@@ -491,7 +496,7 @@ cwl_badge_release:
491
496
  rm -rf badges1.2
492
497
  echo -e "\e[0Ksection_end:`date +%s`:download_tests\r\e[0K"
493
498
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the CWL v1.2 conformance tests."
494
- make test tests="src/toil/test/cwl/spec_v12/conformance_tests.cwltest.yaml" threads="${TEST_THREADS}" pytest_args="--cwl-runner-verbose --cwl-badgedir=badges1.2 --junit-xml=in-place-update-conformance-1.2.junit.xml --cwl-args='--relax-path-checks --clean=always --logDebug --statusWait=10 --retryCount=2 --eval-timeout=600 --bypass-file-store'"
499
+ make test tests="src/toil/test/cwl/spec_v12/conformance_tests.cwltest.yaml" threads="${TEST_THREADS}" pytest_args="--randomly-dont-reorganize --cwl-runner-verbose --cwl-badgedir=badges1.2 --junit-xml=in-place-update-conformance-1.2.junit.xml --cwl-args='--relax-path-checks --clean=always --logDebug --statusWait=10 --retryCount=2 --eval-timeout=600 --bypass-file-store'"
495
500
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
496
501
  allow_failure: true
497
502
  artifacts:
@@ -545,7 +550,7 @@ cwl_misc:
545
550
  python setup_gitlab_docker.py # login to increase the docker.io rate limit
546
551
  echo -e "\e[0Ksection_end:`date +%s`:prepare\r\e[0K"
547
552
  echo -e "\e[0Ksection_start:`date +%s`:test\r\e[0KRun the miscellaneous CWL tests"
548
- make test threads="${TEST_THREADS}" tests="src/toil/test/cwl/cwlTest.py -k '(TestCWLWorkflow or cwl_small) and not integrative'"
553
+ make test threads="${TEST_THREADS}" tests="src/toil/test/cwl/cwlTest.py -k 'not integrative and not conformance'"
549
554
  echo -e "\e[0Ksection_end:`date +%s`:test\r\e[0K"
550
555
 
551
556
  #cwl_v1.2_kubernetes:
@@ -642,6 +647,12 @@ server_integration:
642
647
  - if: $CI_PIPELINE_SOURCE == "schedule"
643
648
  - if: $CI_COMMIT_TAG
644
649
  - if: $CI_COMMIT_BRANCH =~ /.*-fix-ci/
650
+ - if: $CI_COMMIT_BRANCH
651
+ changes:
652
+ compare_to: 'refs/heads/master'
653
+ paths:
654
+ - 'src/toil/server/*'
655
+ - 'src/toil/test/server/*'
645
656
  stage: integration
646
657
  cache:
647
658
  key: cache-$MAIN_PYTHON_PKG
@@ -657,7 +668,7 @@ server_integration:
657
668
  - python setup_gitlab_ssh.py
658
669
  - chmod 400 /root/.ssh/id_rsa
659
670
  # Test server and its integration with AWS
660
- - make test threads="${TEST_THREADS}" tests="src/toil/test/server"
671
+ - make test threads="${TEST_THREADS}" tests="src/toil/test/server -k 'integrative'"
661
672
 
662
673
  provisioner_integration:
663
674
  rules:
@@ -679,7 +690,7 @@ provisioner_integration:
679
690
  - export TOIL_TEST_INTEGRATIVE=True; export TOIL_AWS_KEYNAME=id_rsa; export TOIL_AWS_ZONE=us-west-2a
680
691
  # This reads GITLAB_SECRET_FILE_SSH_KEYS
681
692
  - python setup_gitlab_ssh.py
682
- - make test threads="${TEST_THREADS}" tests="src/toil/test/sort/sortTest.py src/toil/test/provisioners/clusterScalerTest.py src/toil/test/utils/utilsTest.py::TestUtils::testAWSProvisionerUtils src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSProvisionerBenchTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSManagedAutoscaleTest src/toil/test/wdl/wdltoil_test_kubernetes.py::WDLKubernetesClusterTest"
693
+ - make test threads="${TEST_THREADS}" tests="src/toil/test/sort/sortTest.py src/toil/test/provisioners/clusterScalerTest.py src/toil/test/utils/utilsTest.py::TestUtils::testAWSProvisionerUtils src/toil/test/provisioners/aws/awsProvisionerTest.py::TestAWSProvisionerBenchTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSAutoscaleTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSManagedAutoscaleTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSStaticAutoscaleTest src/toil/test/wdl/wdltoil_test_kubernetes.py::WDLKubernetesClusterTest"
683
694
  # - make test tests=src/toil/test/provisioners/gceProvisionerTest.py # needs env vars set to run
684
695
 
685
696
  google_jobstore:
@@ -732,7 +743,7 @@ mesos:
732
743
  - export GOOGLE_APPLICATION_CREDENTIALS=$GOOGLE_CREDENTIALS
733
744
  - export TOIL_GOOGLE_KEYNAME=id_rsa
734
745
  - export TOIL_GOOGLE_PROJECTID=toil-dev
735
- - make test threads="${TEST_THREADS}" tests="src/toil/test/mesos/MesosDataStructuresTest.py::DataStructuresTest src/toil/test/batchSystems/batchSystemTest.py::MesosBatchSystemTest src/toil/test/sort/sortTest.py::SortTest::testAwsMesos src/toil/test/sort/sortTest.py::SortTest::testFileMesos src/toil/test/sort/sortTest.py::SortTest::testGoogleMesos src/toil/test/cwl/cwlTest.py::TestCWLv10::test_mesos_cwl_conformance src/toil/test/cwl/cwlTest.py::TestCWLv10::test_mesos_cwl_conformance_with_caching src/toil/test/src/promisedRequirementTest.py::TestMesosPromisedRequirements src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSAutoscaleTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSStaticAutoscaleTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSAutoscaleTestMultipleNodeTypes src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSRestartTest::testAutoScaledCluster"
746
+ - make test threads="${TEST_THREADS}" tests="src/toil/test/mesos/MesosDataStructuresTest.py::DataStructuresTest src/toil/test/batchSystems/batchSystemTest.py::MesosBatchSystemTest src/toil/test/sort/sortTest.py::SortTest::testAwsMesos src/toil/test/sort/sortTest.py::SortTest::testFileMesos src/toil/test/sort/sortTest.py::SortTest::testGoogleMesos src/toil/test/cwl/cwlTest.py::TestCWLv10Conformance::test_mesos_cwl_conformance src/toil/test/cwl/cwlTest.py::TestCWLv10Conformance::test_mesos_cwl_conformance_with_caching src/toil/test/src/promisedRequirementTest.py::TestMesosPromisedRequirements src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSAutoscaleTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSStaticAutoscaleTest src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSAutoscaleTestMultipleNodeTypes src/toil/test/provisioners/aws/awsProvisionerTest.py::AWSRestartTest::testAutoScaledCluster"
736
747
 
737
748
  batchsystem:
738
749
  rules:
@@ -780,15 +791,4 @@ cactus_integration:
780
791
  - chmod 400 /root/.ssh/id_rsa
781
792
  - make test threads="${TEST_THREADS}" tests=src/toil/test/cactus/test_cactus_integration.py
782
793
 
783
- # Plugin tests
784
- plugin:
785
- rules:
786
- - if: $CI_PIPELINE_SOURCE != "schedule"
787
- stage: integration
788
- cache:
789
- key: cache-$MAIN_PYTHON_PKG
790
- paths:
791
- - .cache/pip
792
- script:
793
- - ${MAIN_PYTHON_PKG} -m virtualenv venv && . venv/bin/activate && pip install -U pip wheel && make prepare && make develop extras=[all]
794
- - make test threads="${TEST_THREADS}" tests=src/toil/test/batchSystems/batch_system_plugin_test.py
794
+
@@ -65,7 +65,7 @@ the appliance images to, for example:
65
65
  You might also want to build just for one architecture and load into your
66
66
  Docker daemon. We have a 'load_docker' target for this.
67
67
 
68
- make load_docker arch=amd64
68
+ make load_docker arch=linux/amd64
69
69
 
70
70
  If Docker is not installed, Docker-related targets tasks and tests will be skipped. The
71
71
  same can be achieved by setting TOIL_DOCKER_REGISTRY to an empty string.
@@ -85,7 +85,8 @@ help:
85
85
 
86
86
  # This Makefile uses bash features like printf and <()
87
87
  SHELL=bash
88
- tests=src/toil/test
88
+ # We need the default tests to include the doctests, but not htcondor which isn't on mac.
89
+ tests=src/toil --ignore src/toil/batchSystems/htcondor.py
89
90
  arch=linux/amd64,linux/arm64
90
91
  cov=--cov=toil
91
92
  logging=--log-format="%(asctime)s %(levelname)s %(message)s" --log-level DEBUG -o log_cli=true --log-cli-level INFO
@@ -109,7 +110,7 @@ marker=""
109
110
  threads:="auto"
110
111
 
111
112
  dist:="worksteal"
112
- pytest_args:=""
113
+ pytest_args:="--randomly-dont-reorganize"
113
114
 
114
115
  # Only pass the threading options if running parallel tests. Otherwise we lose
115
116
  # live logging. See <https://stackoverflow.com/q/62533239>
@@ -129,7 +130,7 @@ develop: check_venv
129
130
 
130
131
  clean_develop: check_venv
131
132
  - rm -rf src/*.egg-info
132
- - rm src/toil/version.py
133
+ - rm -f src/toil/version.py
133
134
 
134
135
  uninstall:
135
136
  - pip uninstall -y toil
@@ -149,7 +150,7 @@ dist/$(sdist_name):
149
150
 
150
151
  clean_sdist:
151
152
  - rm -rf dist
152
- - rm src/toil/version.py
153
+ - rm -f src/toil/version.py
153
154
 
154
155
  download_cwl_spec:
155
156
  git clone https://github.com/common-workflow-language/cwl-v1.2.git src/toil/test/cwl/spec_v12 || true && cd src/toil/test/cwl/spec_v12 && git checkout 0d538a0dbc5518f3c6083ce4571926f65cb84f76
@@ -169,10 +170,20 @@ test: check_venv check_build_reqs
169
170
  TOIL_HISTORY=0 \
170
171
  python -m pytest $(verbose) $(durations) $(threadopts) -m "$(marker)" $(logging) $(cov) $(tests) $(pytest_args)
171
172
 
173
+ # When running doctests, we need to not capture output, because on CI we can
174
+ # get failures where doctest saw no output and we report captured output, as in
175
+ # <https://ucsc-ci.com/databiosphere/toil/-/jobs/96131>. doctest and pytest's
176
+ # captures might not work properly together.
177
+ doctest: check_venv check_build_reqs
178
+ TOIL_OWNER_TAG="shared" \
179
+ TOIL_HISTORY=0 \
180
+ python -m pytest --capture=no $(verbose) $(durations) $(threadopts) -m "$(marker)" $(logging) $(cov) $(tests) --ignore src/toil/test $(pytest_args)
181
+
172
182
  test_debug: check_venv check_build_reqs
183
+ # Don't include threadopts to make sure we can see our live logging.
173
184
  TOIL_OWNER_TAG="$(whoami)" \
174
185
  TOIL_HISTORY=0 \
175
- python -m pytest $(verbose) $(durations) $(threadopts) -m "$(marker)" $(logging) $(tests) $(pytest_args) --maxfail=1
186
+ python -m pytest $(verbose) $(durations) -m "$(marker)" $(logging) $(tests) $(pytest_args) --maxfail=1
176
187
 
177
188
 
178
189
  # This target will skip building docker and all docker based tests
@@ -184,11 +195,12 @@ test_offline: check_venv check_build_reqs
184
195
  TOIL_HISTORY=0 \
185
196
  python -m pytest $(verbose) $(durations) $(threadopts) -m "$(marker)" $(logging) $(cov) $(tests) $(pytest_args)
186
197
 
187
- # This target will run about 1 minute of tests, and stop at the first failure
198
+ # This target will run about 1 minute of tests, and stop at the first failure.
199
+ # There can be more than one failure because of parallel execution.
188
200
  test_1min: check_venv check_build_reqs
189
- TOIL_SKIP_DOCKER=True \
201
+ TOIL_SKIP_DOCKER=False \
190
202
  TOIL_HISTORY=0 \
191
- python -m pytest $(verbose) $(durations) $(threadopts) -m "$(marker)" $(logging) --timeout=10 --maxfail=1 $(pytest_args) src/toil/test/batchSystems/batchSystemTest.py::SingleMachineBatchSystemTest::test_run_jobs src/toil/test/batchSystems/batchSystemTest.py::KubernetesBatchSystemBenchTest src/toil/test/server/serverTest.py::ToilWESServerBenchTest::test_get_service_info src/toil/test/cwl/cwlTest.py::TestCWLWorkflow::test_run_colon_output src/toil/test/jobStores/jobStoreTest.py::FileJobStoreTest::testUpdateBehavior
203
+ python -m pytest $(verbose) $(durations) $(threadopts) -m "$(marker)" $(logging) --timeout=30 --maxfail=1 $(pytest_args) src/toil/test/batchSystems/batchSystemTest.py::SingleMachineBatchSystemTest::test_run_jobs src/toil/test/batchSystems/batchSystemTest.py::KubernetesBatchSystemBenchTest src/toil/test/server/serverTest.py::ToilWESServerBenchTest::test_get_service_info src/toil/test/cwl/cwlTest.py::TestCWLWorkflow::test_run_colon_output src/toil/test/jobStores/jobStoreTest.py::FileJobStoreTest::testUpdateBehavior
192
204
 
193
205
  ifdef TOIL_DOCKER_REGISTRY
194
206
 
@@ -206,7 +218,7 @@ endef
206
218
 
207
219
  docker: toil_docker prometheus_docker grafana_docker mtail_docker
208
220
 
209
- toil_docker: docker/Dockerfile
221
+ toil_docker: docker/Dockerfile src/toil/version.py
210
222
  mkdir -p .docker_cache
211
223
  @set -ex \
212
224
  ; cd docker \
@@ -377,7 +389,7 @@ preflight: mypy touched_pylint
377
389
  develop clean_develop \
378
390
  sdist clean_sdist \
379
391
  download_cwl_spec \
380
- test test_offline test_1min \
392
+ test doctest test_offline test_1min \
381
393
  docs clean_docs \
382
394
  clean \
383
395
  sort_imports remove_unused_imports remove_trailing_whitespace \
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: toil
3
- Version: 8.2.0
3
+ Version: 9.1.0
4
4
  Summary: Pipeline management software for clusters.
5
5
  Home-page: https://github.com/DataBiosphere/toil
6
6
  Author: Benedict Paten and the Toil community
@@ -33,7 +33,7 @@ Requires-Python: >=3.9
33
33
  Description-Content-Type: text/x-rst
34
34
  License-File: LICENSE
35
35
  Requires-Dist: dill<0.4,>=0.3.2
36
- Requires-Dist: requests<=2.31.0
36
+ Requires-Dist: requests<=2.32.5
37
37
  Requires-Dist: docker<8,>=6.1.0
38
38
  Requires-Dist: urllib3<3,>=1.26.0
39
39
  Requires-Dist: python-dateutil
@@ -53,12 +53,12 @@ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post
53
53
  Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "aws"
54
54
  Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "aws"
55
55
  Requires-Dist: moto<6,>=5.0.3; extra == "aws"
56
- Requires-Dist: ec2_metadata<3; extra == "aws"
56
+ Requires-Dist: ec2_metadata<3,>=2.14.0; extra == "aws"
57
57
  Provides-Extra: cwl
58
- Requires-Dist: cwltool==3.1.20250110105449; extra == "cwl"
58
+ Requires-Dist: cwltool==3.1.20250715140722; extra == "cwl"
59
59
  Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "cwl"
60
- Requires-Dist: galaxy-tool-util<25; extra == "cwl"
61
- Requires-Dist: galaxy-util<25; extra == "cwl"
60
+ Requires-Dist: galaxy-tool-util<26; extra == "cwl"
61
+ Requires-Dist: galaxy-util<26; extra == "cwl"
62
62
  Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "cwl"
63
63
  Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "cwl"
64
64
  Requires-Dist: networkx!=2.8.1,<4; extra == "cwl"
@@ -67,28 +67,28 @@ Requires-Dist: cwl-utils>=0.36; extra == "cwl"
67
67
  Provides-Extra: encryption
68
68
  Requires-Dist: pynacl<2,>=1.4.0; extra == "encryption"
69
69
  Provides-Extra: google
70
- Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "google"
70
+ Requires-Dist: apache-libcloud<4,>=3.6.1; extra == "google"
71
71
  Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "google"
72
72
  Requires-Dist: google-auth<3,>=2.18.1; extra == "google"
73
73
  Provides-Extra: kubernetes
74
- Requires-Dist: kubernetes<33,>=12.0.1; extra == "kubernetes"
74
+ Requires-Dist: kubernetes<34,>=12.0.1; extra == "kubernetes"
75
75
  Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "kubernetes"
76
76
  Requires-Dist: types-urllib3; extra == "kubernetes"
77
77
  Requires-Dist: types-PyYAML; extra == "kubernetes"
78
78
  Requires-Dist: idna>=2; extra == "kubernetes"
79
79
  Provides-Extra: wdl
80
- Requires-Dist: miniwdl==1.12.1; extra == "wdl"
80
+ Requires-Dist: miniwdl==1.13.0; extra == "wdl"
81
81
  Requires-Dist: wdlparse==0.1.0; extra == "wdl"
82
82
  Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "wdl"
83
83
  Provides-Extra: server
84
- Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "server"
85
- Requires-Dist: flask<2.3,>=2.0; extra == "server"
86
- Requires-Dist: werkzeug<4,>=2.0; extra == "server"
87
- Requires-Dist: flask-cors==5.0.1; extra == "server"
88
- Requires-Dist: gunicorn==23.0.0; extra == "server"
89
- Requires-Dist: celery<6,>=5.1.0; extra == "server"
90
- Requires-Dist: wes-service<5,>=4.0.0; extra == "server"
91
- Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "server"
84
+ Requires-Dist: connexion[swagger-ui]<4,>=3; extra == "server"
85
+ Requires-Dist: flask<4,>=3; extra == "server"
86
+ Requires-Dist: werkzeug<4,>=3; extra == "server"
87
+ Requires-Dist: flask-cors<7,>=5.0.1; extra == "server"
88
+ Requires-Dist: gunicorn<24,>=23.0.0; extra == "server"
89
+ Requires-Dist: celery<6,>=5.4.0; extra == "server"
90
+ Requires-Dist: wes-service<6,>=5.0.0; extra == "server"
91
+ Requires-Dist: ruamel.yaml<1,>=0.18.7; extra == "server"
92
92
  Provides-Extra: htcondor
93
93
  Requires-Dist: htcondor<25,>=23.6.0; sys_platform != "darwin" and extra == "htcondor"
94
94
  Provides-Extra: mesos
@@ -98,36 +98,36 @@ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post
98
98
  Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "all"
99
99
  Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "all"
100
100
  Requires-Dist: moto<6,>=5.0.3; extra == "all"
101
- Requires-Dist: ec2_metadata<3; extra == "all"
102
- Requires-Dist: cwltool==3.1.20250110105449; extra == "all"
101
+ Requires-Dist: ec2_metadata<3,>=2.14.0; extra == "all"
102
+ Requires-Dist: cwltool==3.1.20250715140722; extra == "all"
103
103
  Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "all"
104
- Requires-Dist: galaxy-tool-util<25; extra == "all"
105
- Requires-Dist: galaxy-util<25; extra == "all"
104
+ Requires-Dist: galaxy-tool-util<26; extra == "all"
105
+ Requires-Dist: galaxy-util<26; extra == "all"
106
106
  Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "all"
107
107
  Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "all"
108
108
  Requires-Dist: networkx!=2.8.1,<4; extra == "all"
109
109
  Requires-Dist: CacheControl[filecache]; extra == "all"
110
110
  Requires-Dist: cwl-utils>=0.36; extra == "all"
111
111
  Requires-Dist: pynacl<2,>=1.4.0; extra == "all"
112
- Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "all"
112
+ Requires-Dist: apache-libcloud<4,>=3.6.1; extra == "all"
113
113
  Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "all"
114
114
  Requires-Dist: google-auth<3,>=2.18.1; extra == "all"
115
- Requires-Dist: kubernetes<33,>=12.0.1; extra == "all"
115
+ Requires-Dist: kubernetes<34,>=12.0.1; extra == "all"
116
116
  Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "all"
117
117
  Requires-Dist: types-urllib3; extra == "all"
118
118
  Requires-Dist: types-PyYAML; extra == "all"
119
119
  Requires-Dist: idna>=2; extra == "all"
120
- Requires-Dist: miniwdl==1.12.1; extra == "all"
120
+ Requires-Dist: miniwdl==1.13.0; extra == "all"
121
121
  Requires-Dist: wdlparse==0.1.0; extra == "all"
122
122
  Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "all"
123
- Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "all"
124
- Requires-Dist: flask<2.3,>=2.0; extra == "all"
125
- Requires-Dist: werkzeug<4,>=2.0; extra == "all"
126
- Requires-Dist: flask-cors==5.0.1; extra == "all"
127
- Requires-Dist: gunicorn==23.0.0; extra == "all"
128
- Requires-Dist: celery<6,>=5.1.0; extra == "all"
129
- Requires-Dist: wes-service<5,>=4.0.0; extra == "all"
130
- Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "all"
123
+ Requires-Dist: connexion[swagger-ui]<4,>=3; extra == "all"
124
+ Requires-Dist: flask<4,>=3; extra == "all"
125
+ Requires-Dist: werkzeug<4,>=3; extra == "all"
126
+ Requires-Dist: flask-cors<7,>=5.0.1; extra == "all"
127
+ Requires-Dist: gunicorn<24,>=23.0.0; extra == "all"
128
+ Requires-Dist: celery<6,>=5.4.0; extra == "all"
129
+ Requires-Dist: wes-service<6,>=5.0.0; extra == "all"
130
+ Requires-Dist: ruamel.yaml<1,>=0.18.7; extra == "all"
131
131
  Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "all"
132
132
  Dynamic: author
133
133
  Dynamic: author-email
@@ -70,8 +70,11 @@ def contains_toil_test_patterns(string):
70
70
 
71
71
 
72
72
  def matches(resource_name):
73
- if (resource_name.endswith('--files') or resource_name.endswith('--jobs') or resource_name.endswith('_toil')
74
- or resource_name.endswith('--internal') or resource_name.startswith('toil-s3test-')):
73
+ if (
74
+ resource_name.endswith('--files') or resource_name.endswith('--jobs')
75
+ or resource_name.endswith('--toil') or resource_name.endswith('_toil')
76
+ or resource_name.endswith('--internal') or resource_name.startswith('toil-s3test-')
77
+ ):
75
78
  if contains_toil_test_patterns(resource_name):
76
79
  return resource_name
77
80
 
@@ -22,7 +22,8 @@ def main():
22
22
 
23
23
  # TODO: Remove these paths as typing is added and mypy conflicts are addressed.
24
24
  # These are handled as path prefixes.
25
- ignore_paths = [os.path.abspath(f) for f in [
25
+
26
+ ignore_paths = [os.path.join(pkg_root, f) for f in [
26
27
  'docs/_build',
27
28
  'docker/Dockerfile.py',
28
29
  'docs/conf.py',
@@ -61,12 +62,8 @@ def main():
61
62
  'src/toil/jobStores/fileJobStore.py',
62
63
  'src/toil/jobStores/__init__.py',
63
64
  'src/toil/jobStores/googleJobStore.py',
64
- 'src/toil/jobStores/aws/utils.py',
65
- 'src/toil/jobStores/aws/jobStore.py',
66
- 'src/toil/jobStores/aws/__init__.py',
67
65
  'src/toil/utils/__init__.py',
68
66
  'src/toil/lib/throttle.py',
69
- 'src/toil/lib/iterables.py',
70
67
  'src/toil/lib/bioio.py',
71
68
  'src/toil/lib/ec2.py',
72
69
  'src/toil/lib/expando.py',
@@ -87,7 +84,6 @@ def main():
87
84
  'src/toil/test/cactus',
88
85
  'src/toil/test/docs',
89
86
  'src/toil/test/jobStores',
90
- 'src/toil/test/lib/aws',
91
87
  'src/toil/test/lib/test_conversions.py',
92
88
  'src/toil/test/lib/test_ec2.py',
93
89
  'src/toil/test/lib/test_misc.py',
@@ -72,6 +72,21 @@ dependencies = ' '.join(python_packages[python] +
72
72
  # Dependencies for singularity on kubernetes
73
73
  'tzdata'])
74
74
 
75
+ # pymesos's http-parser dependency can't build on Python later than 3.10, as
76
+ # released in 0.9.0. The upstream pymesos can, but we write it out of Toil's
77
+ # dependencies on later Python versions, since a working http-parser is not
78
+ # available in PyPI. So we need to manually inject a working http-parser, and
79
+ # pymesos, into the Docker images.
80
+ extra_mesos_python_modules = {
81
+ 'python3.9': [],
82
+ 'python3.10': [],
83
+ 'python3.11': ['http-parser@git+https://github.com/adamnovak/http-parser.git@5a63516597bb4c93a7ba178b1e4bab939da5afb3', 'pymesos==0.3.15'],
84
+ 'python3.12': ['http-parser@git+https://github.com/adamnovak/http-parser.git@5a63516597bb4c93a7ba178b1e4bab939da5afb3', 'pymesos==0.3.15'],
85
+ 'python3.13': ['http-parser@git+https://github.com/adamnovak/http-parser.git@5a63516597bb4c93a7ba178b1e4bab939da5afb3', 'pymesos==0.3.15']
86
+ }
87
+
88
+ extra_python_modules = " ".join(extra_mesos_python_modules[python])
89
+
75
90
 
76
91
  def heredoc(s):
77
92
  s = textwrap.dedent(s).format(**globals())
@@ -80,11 +95,10 @@ def heredoc(s):
80
95
 
81
96
  motd = heredoc('''
82
97
 
83
- This is the Toil appliance. You can run your Toil script directly on the appliance.
84
- Run toil <workflow>.py --help to see all options for running your workflow.
98
+ This is the Toil appliance. You can run your Toil workflow directly on the appliance.
85
99
  For more information see http://toil.readthedocs.io/en/latest/
86
100
 
87
- Copyright (C) 2015-2022 Regents of the University of California
101
+ Copyright (C) 2015-2025 Regents of the University of California
88
102
 
89
103
  Version: {applianceSelf}
90
104
 
@@ -182,18 +196,22 @@ print(heredoc('''
182
196
  # The stock pip is too old and can't install from sdist with extras
183
197
  RUN curl -sS https://bootstrap.pypa.io/get-pip.py | {python}
184
198
 
185
- # Include virtualenv, as it is still the recommended way to deploy pipelines
186
- RUN {pip} install --upgrade virtualenv==20.25.1
199
+ # Include virtualenv, as it is still the recommended way to deploy
200
+ # pipelines.
201
+ #
202
+ # We need to --ignore-installed here to allow shadowing system packages
203
+ # from apt in /usr/lib/python3/dist-packages when the installed package
204
+ # needs newer versions. We just hope that doesn't break the Ubuntu system
205
+ # too badly when we're actually on the system Python, or if Toil needs to
206
+ # upgrade a distutils or setuptools dependency. On the deadsnakes Pythons,
207
+ # installations into the version-specific package directory won't be seen
208
+ # by the system Python which is a different version.
209
+ #
210
+ # TODO: Change to nested virtual environments and .pth files and teach Toil
211
+ # to just ship the user-level one for hot deploy.
212
+ RUN {pip} install --ignore-installed --upgrade 'virtualenv>=20.25.1,<21'
187
213
 
188
- # Install s3am (--never-download prevents silent upgrades to pip, wheel and setuptools)
189
- # Install setuptools within the virtual environment to properly access distutils due to PEP 632 and gh-95299 in Python 3.12 release notes
190
- # https://docs.python.org/3/whatsnew/3.12.html#summary-release-highlights
191
- RUN virtualenv --python {python} --never-download /home/s3am \
192
- && /home/s3am/bin/pip install setuptools \
193
- && /home/s3am/bin/pip install s3am==2.0 \
194
- && ln -s /home/s3am/bin/s3am /usr/local/bin/
195
-
196
- RUN {pip} install --upgrade setuptools==69.2.0
214
+ RUN {pip} install --ignore-installed --upgrade 'setuptools>=80,<81'
197
215
 
198
216
  # Fix for https://issues.apache.org/jira/browse/MESOS-3793
199
217
  ENV MESOS_LAUNCHER=posix
@@ -222,7 +240,7 @@ print(heredoc('''
222
240
 
223
241
  # This component changes most frequently and keeping it last maximizes Docker cache hits.
224
242
  COPY {sdistName} .
225
- RUN {pip} install {sdistName}[all]
243
+ RUN {pip} install --ignore-installed --upgrade {sdistName}[all] {extra_python_modules}
226
244
  RUN rm {sdistName}
227
245
 
228
246
  # We intentionally inherit the default ENTRYPOINT and CMD from the base image, to the effect
@@ -18,7 +18,6 @@ with the ``--awsEc2ProfileArn`` parameter.
18
18
  "Action": [
19
19
  "ec2:*",
20
20
  "s3:*",
21
- "sdb:*",
22
21
  "iam:PassRole"
23
22
  ],
24
23
  "Resource": "*"
@@ -64,6 +64,8 @@ CWL 1.2 Optional Features
64
64
 
65
65
  .. |docker| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/docker.json%3Fjob=cwl_badge
66
66
 
67
+ .. |env_var| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/env_var.json%3Fjob=cwl_badge
68
+
67
69
  .. |expression_tool| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/expression_tool.json%3Fjob=cwl_badge
68
70
 
69
71
  .. |format_checking| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/format_checking.json%3Fjob=cwl_badge
@@ -82,16 +84,26 @@ CWL 1.2 Optional Features
82
84
 
83
85
  .. |multiple_input| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/multiple_input.json%3Fjob=cwl_badge
84
86
 
87
+ .. |multiple| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/multiple.json%3Fjob=cwl_badge
88
+
85
89
  .. |networkaccess| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/networkaccess.json%3Fjob=cwl_badge
86
90
 
91
+ .. |require| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/require.json%3Fjob=cwl_badge
92
+
87
93
  .. |resource| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/resource.json%3Fjob=cwl_badge
88
94
 
89
95
  .. |scatter| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/scatter.json%3Fjob=cwl_badge
90
96
 
91
97
  .. |schema_def| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/schema_def.json%3Fjob=cwl_badge
92
98
 
99
+ .. |secondary_files| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/secondary_files.json%3Fjob=cwl_badge
100
+
101
+ .. |shell_command| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/shell_command.json%3Fjob=cwl_badge
102
+
93
103
  .. |step_input| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/step_input.json%3Fjob=cwl_badge
94
104
 
105
+ .. |subworkflow| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/subworkflow.json%3Fjob=cwl_badge
106
+
95
107
  .. |timelimit| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/timelimit.json%3Fjob=cwl_badge
96
108
 
97
109
  .. |workflow| image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/workflow.json%3Fjob=cwl_badge
@@ -100,8 +100,8 @@ Besides the normal Toil options and the options supported by cwltool, toil-cwl-r
100
100
  --reference-inputs Do not copy remote inputs into Toil's file store and assume they are accessible in place from all nodes.
101
101
  --disable-streaming Do not allow streaming of job input files. By default, files marked with ``streamable`` True are streamed from remote job stores.
102
102
  --cwl-default-ram Apply CWL specification default ramMin.
103
- --no-cwl-default-ram Do not apply CWL specification default ramMin, so that Toil --defaultMemory applies.
104
-
103
+ --no-cwl-default-ram Do not apply CWL specification default ramMin, so that Toil --defaultMemory applies. This can help jobs get to Slurm with no memory limit assigned.
104
+ --cwl-min-ram BYTES Specify a minimum memory allocation for all tasks. If ``--no-cwl-default-ram`` is passed, this does not apply to tools that do not specify a memory requirement; ``--defaultMemory`` is used for those tools in that case.
105
105
 
106
106
  Running CWL in the Cloud
107
107
  ------------------------