Skip to content

Commit

Permalink
Merge commit '9909b221f02ae70c910c6c4cf2be3e81c9fe186d' into ammr4-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
melund committed Sep 5, 2024
2 parents de4a909 + 9909b22 commit e29c5b9
Show file tree
Hide file tree
Showing 6 changed files with 330 additions and 327 deletions.
2 changes: 1 addition & 1 deletion Docs/body/shoulder_arm_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Report](https://paperpile.com/shared/TUqWjt).

```{raw} html
<video width="45%" style="display:block; margin: 0 auto;" controls autoplay loop>
<source src="../_static/ShouderArm_rotalting_model.mp4" type="video/mp4">
<source src="../_static/ShoulderArm_rotating_model.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!--<img src="../_static/ShoulderCloseupBack.jpg" alt="Smiley face" width="45%">-->
Expand Down
4 changes: 2 additions & 2 deletions Docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def tagged_commit():
pygments_style = "AnyScript"

ams_version = os.environ.get("AMS_VERSION", "8.0.4")
if not re.match("^\d\.\d\.\d", ams_version):
if not re.match(r"^\d\.\d\.\d", ams_version):
raise ValueError("Wrong format for AMS version, environment variable")
ams_version_short = ams_version.rpartition(".")[0]
ams_version_x = ams_version_short + ".x"
Expand All @@ -131,7 +131,7 @@ def tagged_commit():
raise Exception("Could not parse AMMR version")


if not re.match("^\d\.\d\.\d", ammr_version):
if not re.match(r"^\d\.\d\.\d", ammr_version):
raise ValueError("Wrong format for AMMR version, environment variable")

ammr_version_short = ammr_version.rpartition(".")[0]
Expand Down
Loading

0 comments on commit e29c5b9

Please sign in to comment.