make isolated sdist use the correct filename for unofficial builds

This commit is contained in:
Ryan Petrello 2017-06-22 10:51:29 -04:00
parent 0fafb5ce26
commit 0804b7336c

View File

@ -51,6 +51,10 @@ class sdist_isolated(sdist):
'recursive-include awx/lib *.py',
]
def __init__(self, dist):
sdist.__init__(self, dist)
dist.metadata.version += build_timestamp
def get_file_list(self):
self.filelist.process_template_line('include setup.py')
for line in self.includes: