Skip to content

Commit 0fa8264

Browse files
committed
removing the version export
1 parent e8f8779 commit 0fa8264

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

httomo_backends/scripts/yaml_pipelines_generator.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@
3131
import httomo_backends
3232
import yaml
3333

34-
try:
35-
from httomo import __version__ as httomo_version
36-
except:
37-
httomo_version = "2.6" # temporary version fix for sphinx build
38-
pass
3934

4035
CS = ruamel.yaml.comments.CommentedSeq # defaults to block style
4136

@@ -140,11 +135,8 @@ def yaml_pipelines_generator(
140135
except OSError as e:
141136
print("loading yaml template failed", e)
142137

143-
version_split = httomo_version.split(".")
144-
major = version_split[0]
145-
minor = version_split[1]
146138
pipeline_full.yaml_set_start_comment(
147-
f"This pipeline is supported by HTTomo ver. {major}.{minor}"
139+
"This pipeline should be supported by the latest developments of HTTomo. Use module load httomo/latest module at Diamond."
148140
)
149141

150142
if "loaders" in module_name:

0 commit comments

Comments
 (0)