Skip to content

Commit 07af4cb

Browse files
committed
Avoid issues with tags not being downloaded
1 parent a0e180e commit 07af4cb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

admin/release.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ def build_and_upload_to_pypi() -> None:
5959
"""
6060
for args in (
6161
['git', 'fetch', '--tags'],
62+
['git', 'merge', 'origin/master'],
6263
['rm', '-rf', 'build'],
64+
['git', 'status'],
6365
['python', 'setup.py', 'sdist', 'bdist_wheel'],
6466
['twine', 'upload', '-r', 'pypi', 'dist/*'],
6567
):

0 commit comments

Comments
 (0)