From d7ddbaa832231eab8440574923b8dfbbc1463681 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Sun, 23 Dec 2018 19:10:44 +0100 Subject: [PATCH] setup: Force owner/group of files in tarball Using the current user and group does not make much sense. I would have put something other than root/root like weboob/weboob, but it only works if the user and group exists, despite them being stored as text in the tarball. --- setup.cfg | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.cfg b/setup.cfg index 894d0dfc9c..1302f2f429 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,3 +29,10 @@ exclude = dist,*.egg-info,build,.git,__pycache__,boilerplate_data,stable_backpor [easy_install] +[sdist] +owner = root +group = root + +[bdist] +owner = root +group = root -- GitLab