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 036c90c commit 573780bCopy full SHA for 573780b
.readthedocs.yml
@@ -4,6 +4,10 @@ build:
4
os: ubuntu-20.04
5
tools:
6
python: mambaforge-4.10
7
+ jobs:
8
+ post_checkout:
9
+ - git fetch --unshallow
10
+ - git fetch --all
11
12
conda:
13
environment: requirements/ci/readthedocs.yml
docs/src/conf.py
@@ -87,6 +87,8 @@ def autolog(message):
87
# |version|, also used in various other places throughout the built documents.
88
89
version = get_version("scitools-iris")
90
+if version.endswith("+dirty"):
91
+ version = version[: -len("+dirty")]
92
autolog(f"Iris Version = {version}")
93
94
# -- General configuration ---------------------------------------------------
0 commit comments