Skip to content

Commit 066b5f2

Browse files
committed
Delete release file after packaging crate
1 parent b572c6b commit 066b5f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tooling/src/hypothesistooling/projects/conjecturerust.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ def update_changelog_and_version():
5656
version=version,
5757
entry=release_contents,
5858
)
59-
# os.unlink(RELEASE_FILE)
60-
6159

6260
def cargo(*args):
6361
install.ensure_rustup()
@@ -75,6 +73,8 @@ def build_distribution():
7573
else:
7674
cargo("package")
7775

76+
os.unlink(RELEASE_FILE)
77+
7878

7979
def tag_name():
8080
"""The tag name for the upcoming release."""

0 commit comments

Comments
 (0)