toil 9.1.1__py3-none-any.whl → 9.1.2__py3-none-any.whl

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.
toil/leader.py CHANGED
@@ -349,14 +349,9 @@ class Leader:
349
349
  def create_status_sentinel_file(self, fail: bool) -> None:
350
350
  """Create a file in the jobstore indicating failure or success."""
351
351
  logName = "failed.log" if fail else "succeeded.log"
352
- localLog = os.path.join(os.getcwd(), logName)
353
- open(localLog, "w").close()
354
- self.jobStore.import_file("file://" + localLog, logName, hardlink=True)
355
-
356
- if os.path.exists(
357
- localLog
358
- ): # Bandaid for Jenkins tests failing stochastically and unexplainably.
359
- os.remove(localLog)
352
+ with self.jobStore.write_shared_file_stream(logName) as file_handle:
353
+ # We just need an empty file, so don't write any content
354
+ pass
360
355
 
361
356
  def _handledFailedSuccessor(self, successor_id: str, predecessor_id: str) -> bool:
362
357
  """
toil/version.py CHANGED
@@ -1,13 +1,13 @@
1
- baseVersion = '9.1.1'
1
+ baseVersion = '9.1.2'
2
2
  cgcloudVersion = '1.6.0a1.dev393'
3
- version = '9.1.1-f654a3c80f5318ae2ec2e5ecb278a05e1e844a58'
3
+ version = '9.1.2-355b72ba0e425619c0367562caf2a337078dba65'
4
4
  cacheTag = 'cache-local-py3.9'
5
5
  mainCacheTag = 'cache-master-py3.9'
6
- distVersion = '9.1.1'
6
+ distVersion = '9.1.2'
7
7
  exactPython = 'python3.9'
8
8
  python = 'python3.9'
9
- dockerTag = '9.1.1-f654a3c80f5318ae2ec2e5ecb278a05e1e844a58-py3.9'
10
- currentCommit = 'f654a3c80f5318ae2ec2e5ecb278a05e1e844a58'
9
+ dockerTag = '9.1.2-355b72ba0e425619c0367562caf2a337078dba65-py3.9'
10
+ currentCommit = '355b72ba0e425619c0367562caf2a337078dba65'
11
11
  dockerRegistry = 'quay.io/ucsc_cgl'
12
12
  dockerName = 'toil'
13
13
  dirty = False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: toil
3
- Version: 9.1.1
3
+ Version: 9.1.2
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
@@ -4,13 +4,13 @@ toil/common.py,sha256=SCcqojtspk3oqwStKUx-daP7fMCgWQ8TWBgh7WNcSRY,83253
4
4
  toil/deferred.py,sha256=2ShsuPqDwu0jhBQ6ocMwe4lfNegBm2lj7dOG9E7X3Zc,14152
5
5
  toil/exceptions.py,sha256=oL2d9uutwtcPkMcEUGrixKUd4y1JLSA0-N7hNJqCLSk,1883
6
6
  toil/job.py,sha256=KGcmuzoCFtWakl_y4LwBlo8Uuh1-FnGqHOXc_BwAF0A,175901
7
- toil/leader.py,sha256=abI47MI8zUlWZCjFce2QMwoFF9-QQ1aF8kWn7qKtrpM,85829
7
+ toil/leader.py,sha256=jyx9pRREOfbA8X-IfVQmhNv34UvhmUJfm2Tr6-oqKwc,85659
8
8
  toil/realtimeLogger.py,sha256=2O4AUaKtvItzzCAQKORIEHZ2cDoLf_6njoKWv_uzdFc,9878
9
9
  toil/resource.py,sha256=2LmdM6zqjG_aYqQ25UixpkdKipLYnKngMGhll4I-O6M,25349
10
10
  toil/serviceManager.py,sha256=GE5IUjQmNrekYv9tclim0RlCFf4ueOQ2H4qHjMBrOcg,19978
11
11
  toil/statsAndLogging.py,sha256=JXir7TCV8OdDaAdt3VsDR2rbdNWk4ILyOwlKHVdoXT0,18696
12
12
  toil/toilState.py,sha256=DD52XQv8wRCYzF7-F6Olqa_k6u-_py-JWyjqJHRh6Z0,17989
13
- toil/version.py,sha256=BddPhxnAGVCb3Qc7AXduzi7u3NQLYpaKxsg1dtQzWag,486
13
+ toil/version.py,sha256=1R_b63zYENcFZU5lPdbYiY-fe6Wfugp63fYEbhmEcaA,486
14
14
  toil/worker.py,sha256=uEU3BnmFS-SQf2JW6FDvcf7t8uUXFXiInaJLTt8l9Lk,39315
15
15
  toil/batchSystems/__init__.py,sha256=T8psI5GmvE71_XmajKsfeQ3YUs6XM7rX1Fy9VNUX_-Q,1036
16
16
  toil/batchSystems/abstractBatchSystem.py,sha256=yOsKGlKOADtBhsG6OVvBY2yRJREJtPd84WisE47xBO0,33803
@@ -444,9 +444,9 @@ toil/utils/toilUpdateEC2Instances.py,sha256=47972f1_oRvKOZv77EcBr3QjP2YNl8SZWhTs
444
444
  toil/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
445
445
  toil/wdl/utils.py,sha256=U0TqbVTsap0VdeZjrUf4l71A7Zns-Hkso1B1Zdp2LRk,1316
446
446
  toil/wdl/wdltoil.py,sha256=DKGkqbGjjEaXt9QrnSKDzEE3JuAMNzE_jc9cxyibk7c,265992
447
- toil-9.1.1.dist-info/licenses/LICENSE,sha256=YVxVi652J1ZDmtC3EMP5r0EbK85-hm_pzogiULmlqUA,12862
448
- toil-9.1.1.dist-info/METADATA,sha256=__E7Qc3gMoOZf0U8AWTtBXtarqwFA8e-zpegiV35-Do,8695
449
- toil-9.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
450
- toil-9.1.1.dist-info/entry_points.txt,sha256=EF2yFhV2UYuJGr-OjMkUOd3RyOCgRWQbS6XJtBJ25eM,436
451
- toil-9.1.1.dist-info/top_level.txt,sha256=1ydj7IXvHS9tMT5OVTSSpub6ZOaQeIn3KGCgJqaikF0,5
452
- toil-9.1.1.dist-info/RECORD,,
447
+ toil-9.1.2.dist-info/licenses/LICENSE,sha256=YVxVi652J1ZDmtC3EMP5r0EbK85-hm_pzogiULmlqUA,12862
448
+ toil-9.1.2.dist-info/METADATA,sha256=jNXFOpp2P2OkDd2zNWN_RGSuhnsxXvWaxin8lgBE3B4,8695
449
+ toil-9.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
450
+ toil-9.1.2.dist-info/entry_points.txt,sha256=EF2yFhV2UYuJGr-OjMkUOd3RyOCgRWQbS6XJtBJ25eM,436
451
+ toil-9.1.2.dist-info/top_level.txt,sha256=1ydj7IXvHS9tMT5OVTSSpub6ZOaQeIn3KGCgJqaikF0,5
452
+ toil-9.1.2.dist-info/RECORD,,
File without changes