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 2052e57 commit 8daba61Copy full SHA for 8daba61
httomo_backends/scripts/yaml_pipelines_generator.py
@@ -31,11 +31,14 @@
31
import httomo_backends
32
import yaml
33
34
-from httomo import __version__ as httomo_version
+try:
35
+ from httomo import __version__ as httomo_version
36
+except:
37
+ httomo_version = "2.5" # temporary version fix for sphinx build
38
+ pass
39
40
CS = ruamel.yaml.comments.CommentedSeq # defaults to block style
41
-
42
class SweepRange:
43
"""SweepRange class."""
44
pyproject.toml
@@ -24,7 +24,7 @@ dev_template = "{tag}"
24
25
[project]
26
name = "httomo-backends"
27
-version = "0.6.1"
+version = "0.6.2"
28
description = "Supplementary files for HTTomo backends."
29
readme = "README.rst"
30
license = {text = "BSD-3-Clause"}
0 commit comments