1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Steffen Moeller <moeller@debian.org>
Date: Thu, 14 Jun 2018 12:09:05 +0200
Subject: Fixing version.py that is variable and required
Bug-Debian: https://bugs.debian.org/851365
Forwarded: not-needed
Last-Update: 2024-02-13
Generated by running `python version_template.py` from a git checkout of the
source to the tag corresponding to the release
As of Toil 5.7.0 the `cwltool_version` field is set in requirements-cwl.txt, please
copy/update that field manually
---
src/toil/version.py | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 src/toil/version.py
--- /dev/null
+++ toil/src/toil/version.py
@@ -0,0 +1,14 @@
+baseVersion = '9.0.0'
+cgcloudVersion = '1.6.0a1.dev393'
+version = '9.0.0-fa1e35a17670e1927036914ca624bfd591f8349c'
+cacheTag = 'cache-local-py3.13'
+mainCacheTag = 'cache-master-py3.13'
+distVersion = '9.0.0'
+exactPython = 'python3.13'
+python = 'python3.13'
+dockerTag = '9.0.0-fa1e35a17670e1927036914ca624bfd591f8349c-py3.13'
+currentCommit = 'fa1e35a17670e1927036914ca624bfd591f8349c'
+dockerRegistry = 'quay.io/ucsc_cgl'
+dockerName = 'toil'
+dirty = False
+cwltool_version = '3.1.20250110105449'
|