Remove docs/requirements.txt from py_pkgs lookup output

There is no need to build the docs python packages when doing
a repo build. The packages aren't required for a successful
deployment of OpenStack. The output of their data just adds
noise to the output of the lookup, and delays the build with
unnecessary extra wheel builds.

Change-Id: Ia60e1a49d9befdbafdaf89e5cf21e17985a706e7
This commit is contained in:
Jesse Pretorius 2018-05-10 17:51:54 +01:00
parent ee5119b25a
commit 55ddc8bd2c
1 changed files with 3 additions and 0 deletions

View File

@ -626,6 +626,9 @@ class DependencyFileProcessor(object):
return_list.insert(index, file_name)
else:
for file_name in return_list:
print(file_name)
if file_name.endswith('doc/requirements.txt'):
continue
if file_name.endswith('other-requirements.txt'):
continue
elif file_name.endswith('bindep.txt'):