We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1c53b4 commit 1fc0f8cCopy full SHA for 1fc0f8c
conf.py
@@ -129,14 +129,14 @@ def tagged_commit():
129
130
current_year = os.environ.get("YEAR", datetime.now().year)
131
132
-ams_version = os.environ.get("AMS_VERSION", "7.4.3")
+ams_version = os.environ.get("AMS_VERSION", "8.0.3")
133
if not re.match(r"^\d\.\d\.\d", ams_version):
134
raise ValueError("Wrong format for AMS version, environment variable")
135
ams_version_short = ams_version.rpartition(".")[0]
136
ams_version_x = ams_version_short + ".x"
137
138
139
-ammr_version = os.environ.get("AMMR_VERSION", "2.4.3")
+ammr_version = os.environ.get("AMMR_VERSION", "3.0.3")
140
if not re.match(r"^\d\.\d\.\d", ammr_version):
141
raise ValueError("Wrong format for AMMR version, environment variable")
142
ammr_version_short = ammr_version.rpartition(".")[0]
0 commit comments