diff options
author | Chandan Singh <csingh43@bloomberg.net> | 2018-08-22 18:41:09 +0100 |
---|---|---|
committer | Chandan Singh <csingh43@bloomberg.net> | 2018-08-22 19:38:01 +0100 |
commit | 91d62d2fe55eca5dbb5408897db9b69f8c187f17 (patch) | |
tree | 5667e2969f89ed7c7b8f91fffe0bd3fc72b91b3a /MANIFEST.in | |
parent | 5b79bbb725bfa52689bcd8bfeddd15ce4d1ecd5d (diff) | |
download | buildstream-91d62d2fe55eca5dbb5408897db9b69f8c187f17.tar.gz |
MANIFEST.in: Fix include for dev-requirements.txtchandan/fix-mainfest-dev-requirements
Currently, running any setuptools commands using `setup.py` generates a
warning like so:
warning: manifest_maker: MANIFEST.in, line 21: unknown action 'dev-requirements.txt'
The syntax is invalid and got accidentally introduced in !637 but it's a
shame that this is not a warning and no obvious way to make it an error
if there are invalid things in MANIFEST.in file.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 80c815e55..f9e506027 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -23,4 +23,4 @@ recursive-include tests *.expected recursive-include buildstream/_protos *.proto # Requirements files -dev-requirements.txt +include dev-requirements.txt |