We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7057920 commit f3aec83Copy full SHA for f3aec83
jupyter_releaser/actions/draft_release.py
@@ -21,8 +21,9 @@
21
# Remove the checkout
22
shutil.rmtree(CHECKOUT_NAME)
23
24
- # Re-install the parent dir in case it was overshadowed
25
- run("pip install -e .")
+ # Re-install the parent dir if it was overshadowed
+ if os.environ.get("RH_REPO_NAME") == "jupyter_releaser":
26
+ run("pip install -e .")
27
28
run("jupyter-releaser prep-git")
29
run("jupyter-releaser bump-version")
0 commit comments