Skip to content

Commit

Permalink
Merge pull request #767 from conda-forge/beckermr-patch-1
Browse files Browse the repository at this point in the history
fix: see if we can keep the recipe in working order
  • Loading branch information
beckermr authored Nov 8, 2024
2 parents feec63f + 55b5fef commit 49bb5b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_live_version_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def _change_version(new_version="0.13", branch="main"):
import random

new_sha = "".join(random.choices("0123456789abcdef", k=64))
if new_version == "0.14":
new_sha = "f6c45d5788f51dbe1cc55e1010f3e9ebd18b6c0f21907fc35499468a59827eef"

print("changing the version to an old one...", flush=True)
subprocess.run(["git", "checkout", branch], check=True)
Expand All @@ -101,7 +103,7 @@ def _change_version(new_version="0.13", branch="main"):
"commit",
"--allow-empty",
"-m",
"[ci skip] moved version to older 0.13",
f"[ci skip] moved version to {new_version}",
],
check=True,
)
Expand Down

0 comments on commit 49bb5b0

Please sign in to comment.