From 765bf526673697a8d11f4c2e85646f817838272d Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 12 Oct 2018 10:09:56 -0500 Subject: [PATCH] Add __init__.py to web directory I honestly have zero clue why, but without this file the built javascript content is not included in the wheel. It makes zero sense, since the content should be being put into zuul/web/static anyway, so I don't know why wheel would somehow need this file to find the other. It's 2018 and computers don't make sense. Change-Id: Ia451eb7b8f68109e1f810249cae598ec94cb056d --- web/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 web/__init__.py diff --git a/web/__init__.py b/web/__init__.py new file mode 100644 index 0000000000..5c4a874e98 --- /dev/null +++ b/web/__init__.py @@ -0,0 +1,4 @@ +# This file is here because without it python setup.py bdist_wheel does not +# pick up the built javascript files in zuul/web/static. It does not cause +# web/ itself to be put into the wheel, but without it built wheels do not +# have the built javascript files.