[PATCH] D146491: workflows/release-tasks: Upload lit releases to pypi

Tobias Hieta via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 19 06:23:49 PDT 2023


thieta added a comment.

Does lit have any test suite? In that case, I suggest the tests should be executed before uploading.



================
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__)
 
----------------
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?


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