[PATCH] D146491: workflows/release-tasks: Upload lit releases to pypi
Tom Stellard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 19 08:20:40 PDT 2023
tstellar added inline comments.
================
Comment at: llvm/utils/lit/lit/__init__.py:6
__versioninfo__ = (17, 0, 0)
-__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
+__version__ = '.'.join(str(v) for v in __versioninfo__)
----------------
thieta wrote:
> Not sure I love this change. If a user builds a lit version locally, it should still include the dev suffix. Maybe we could substitute this or something when building the release?
This was not meant to be part of the patch, I will remove it. There is code in the GitHub action that strips out the 'dev' before uploading.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146491/new/
https://reviews.llvm.org/D146491
More information about the llvm-commits
mailing list