From 1af9c43b5b8f4b3421355db1edcb82d4f917cd26 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 19 Sep 2017 10:25:21 -0400 Subject: [PATCH] Fix an issue not populating the version metadata for isolated sdist see: https://github.com/ansible/ansible-tower/issues/6810 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a42d80b2d8..bf6d0f7393 100755 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ else: class sdist_isolated(sdist): includes = [ + 'include VERSION', 'include Makefile', 'include awx/__init__.py', 'include awx/main/expect/run.py',