diff --git a/setup.py b/setup.py index 36faee8..899bff0 100644 --- a/setup.py +++ b/setup.py @@ -521,9 +521,13 @@ def run(self): install_req_wheels() open(BUILT_LOCAL, 'w+').close() print("Running install...") - p = Process(target=install.run, args=(self,)) - p.start() - p.join() + try: + p = Process(target=install.run, args=(self,)) + p.start() + p.join() + except BaseException: + print("Dumping install") + print(dir(install)) print("Done running install") if not(download_and_install_wheel()): print("Running egg_install...") diff --git a/version.py b/version.py index 967cb54..5fba6f3 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('0', '0', '5') +__version_info__ = ('0', '0', '6') __version__ = '.'.join(__version_info__)