diff options
author | Alan Rominger <arominge@redhat.com> | 2017-10-27 12:47:45 -0400 |
---|---|---|
committer | ansibot <ansibot@users.noreply.github.com> | 2017-10-27 12:47:45 -0400 |
commit | ef42eaeaa1d463eae5c4788f9a35cd3d24580d92 (patch) | |
tree | f7a9e9bfe50a848876fc6b9666c8267bed52319e /setup.py | |
parent | e010fcf7e12a2ec2ff561235d036052198ff174a (diff) | |
download | ansible-ef42eaeaa1d463eae5c4788f9a35cd3d24580d92.tar.gz |
set the zip_safe flag to False (#32194)
The references to __file__ within code base make the zip_safe
method of installing not possible.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -220,5 +220,7 @@ setup( 'bin/ansible-vault', ], data_files=[], - extras_require=extra_requirements + extras_require=extra_requirements, + # Installing as zip files would break due to references to __file__ + zip_safe=False ) |