[issue23114] "dist must be a Distribution instance" check fails with setuptools

2016-02-13 Thread Ralf Gommers
Changes by Ralf Gommers : -- nosy: +ralf.gommers ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue23114] "dist must be a Distribution instance" check fails with setuptools

2014-12-26 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> distutils: tip-toe around quirks owing to setuptools monkey-patching Extension ___ Python tracker __

[issue23114] "dist must be a Distribution instance" check fails with setuptools

2014-12-26 Thread Stefan Behnel
Stefan Behnel added the comment: Yes, pretty much the same problem. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue23114] "dist must be a Distribution instance" check fails with setuptools

2014-12-26 Thread Éric Araujo
Éric Araujo added the comment: Can this ticket be merged into #23102 ? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue23114] "dist must be a Distribution instance" check fails with setuptools

2014-12-26 Thread Stefan Behnel
New submission from Stefan Behnel: distutils uses this code to validate the input in "Command.__init__()": # late import because of mutual dependence between these classes from distutils.dist import Distribution if not isinstance(dist, Distribution): raise Ty