Skip to content

Commit

Permalink
Dump data about wheel failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbtcollins committed Apr 6, 2015
1 parent 28d3581 commit b3229d8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pip/req/req_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,12 @@ def install(self, install_options, global_options=(), root=None):
return
if self.is_wheel:
version = pip.wheel.wheel_version(self.source_dir)
pip.wheel.check_compatibility(version, self.name)
try:
pip.wheel.check_compatibility(version, self.name)
except:
logger.info('!!!! %r %s %s' % (self, self.__dict__, version))
logger.info('%s' % (os.listdir(self.source_dir),))
raise

self.move_wheel_files(self.source_dir, root=root)
self.install_succeeded = True
Expand Down

0 comments on commit b3229d8

Please sign in to comment.