Re: [Distutils] setuptools >= 20.2 may break applications using pyparsing

2016-05-09 Thread Sebastian Krause
On 09.05.2016, at 15:17, Donald Stufft wrote: > This sounds like something you should open as a bug with setuptools, the > problem lies with pkg_resources.extern:VendorImporter. Probably it should > stop trying to be as tricky and do something more like what pip does here.

[Distutils] setuptools >= 20.2 may break applications using pyparsing

2016-05-09 Thread Sebastian Krause
Hi, I'm developing an application that uses pyparsing and after upgrading setuptools to the newest version I noticed some tests failing. In my main parser module I define an alias for the ParseBaseException which I then use in other parts of the application to catch exceptions: # definition