We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165fb7c commit b9b085dCopy full SHA for b9b085d
src/ttboard/__init__.py
@@ -6,4 +6,13 @@
6
@author: Pat Deegan
7
@copyright: Copyright (C) 2024 Pat Deegan, https://psychogenic.com
8
'''
9
-VERSION='0.9.17'
+import os
10
+
11
+VERSION='0.0.0'
12
13
14
+relfiles = list(
15
+ map(lambda v: v.replace('release_v', ''),
16
+ filter(lambda f: f.startswith('release_v'), os.listdir('/'))) )
17
+if len(relfiles):
18
+ VERSION = relfiles[0]
0 commit comments