diff options
| author | OpenStack Proposal Bot <openstack-infra@lists.openstack.org> | 2014-05-02 09:08:07 +0000 |
|---|---|---|
| committer | OpenStack Proposal Bot <openstack-infra@lists.openstack.org> | 2014-05-02 09:08:07 +0000 |
| commit | 37d136ef6212a3083a685307ce84ac6d02a6e992 (patch) | |
| tree | dc7187c4c05996686f0d147d012e1afcb4025afb /setup.py | |
| parent | a50fb88976b117cb2c309810f41f62db1c823465 (diff) | |
| download | python-ironicclient-37d136ef6212a3083a685307ce84ac6d02a6e992.tar.gz | |
Updated from global requirements
Change-Id: I00470eca0b3b4eb788e4184d8a37cac09bcd1260
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -17,6 +17,14 @@ # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT import setuptools +# In python < 2.7.4, a lazy loading of package `pbr` will break +# setuptools if some other modules registered functions in `atexit`. +# solution from: http://bugs.python.org/issue15881#msg170215 +try: + import multiprocessing # noqa +except ImportError: + pass + setuptools.setup( setup_requires=['pbr'], pbr=True) |
