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

Fix dev version handling in check release #343

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
more cleanup
  • Loading branch information
blink1073 committed Jul 8, 2022
commit bfed75bb2264ff040c8bb614f241cb45352869b2
4 changes: 4 additions & 0 deletions jupyter_releaser/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ def main(force):

version_cmd_options = [
click.option("--version-cmd", envvar="RH_VERSION_COMMAND", help="The version command"),
]

version_create_tag_options = [
click.option(
"--version-create-tag",
envvar="RH_VERSION_CREATE_TAG",
Expand Down Expand Up @@ -313,6 +316,7 @@ def prep_git(ref, branch, repo, auth, username, git_url):
@main.command()
@add_options(version_spec_options)
@add_options(version_cmd_options)
@add_options(version_create_tag_options)
@add_options(changelog_path_options)
@add_options(use_changelog_version_options)
@add_options(python_packages_options)
Expand Down