[PATCH] D34617: LNT's MANIFEST.in file is missing required client & server requirement files
Przemyslaw Wirkus via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 26 07:20:56 PDT 2017
PrzemekWirkus created this revision.
This patch updates LNT's MANIFEST.in file with two missing entries which are required to correctly specify the files needed to distribute LNT as redistributable Python source distribution.
If we don’t supply an explicit list of files, packaging command puts a minimal default set of files into the source distribution (omitting requirements.client.txt & requirements.server.txt). Both .txt files store pinned versions of dependencies for LNT client and server.
Missing MANIFEST.in file entries with requirements are:
- requirements.client.txt
- requirements.server.txt
https://reviews.llvm.org/D34617
Files:
MANIFEST.in
Index: MANIFEST.in
===================================================================
--- MANIFEST.in
+++ MANIFEST.in
@@ -1,4 +1,5 @@
include README.txt CHANGELOG.txt
+include requirements.client.txt requirements.server.txt
recursive-include docs *
recursive-include tests *
recursive-include examples *
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D34617.103941.patch
Type: text/x-patch
Size: 309 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170626/d1444f1e/attachment.bin>
More information about the llvm-commits
mailing list