Skip to content

Commit

Permalink
Debug Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayP13 committed Nov 9, 2018
1 parent 103cca6 commit 66bbb97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('0', '0', '5')
__version_info__ = ('0', '0', '6')
__version__ = '.'.join(__version_info__)

0 comments on commit 66bbb97

Please sign in to comment.