Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump release version for tutorial command #33859

Merged
merged 3 commits into from
Nov 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/spack/spack/cmd/tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import llnl.util.tty as tty
from llnl.util.filesystem import working_dir

import spack
import spack.cmd.common.arguments as arguments
import spack.config
import spack.paths
Expand All @@ -24,7 +25,7 @@


# tutorial configuration parameters
tutorial_branch = "releases/v0.18"
tutorial_branch = "releases/v%s" % ".".join(str(v) for v in spack.spack_version_info[:2])
tutorial_mirror = "file:///mirror"
tutorial_key = os.path.join(spack.paths.share_path, "keys", "tutorial.pub")

Expand Down