1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/commits/2ae2ef6e63fc/
Changeset:   2ae2ef6e63fc
User:        hpk42
Date:        2014-09-14 17:24:27
Summary:     fix issue589: fix bad interaction with numpy and others when 
showing
exceptions.  check for precise "maximum recursion depth exceed" exception
instead of presuming any RuntimeError is that one (implemented in py dep)
Thanks Charles Cloud for analysing the issue.
Affected #:  2 files

diff -r ac71ee79ffa764c925f2d72ea13b9d2e68eb83de -r 
2ae2ef6e63fc0f25ef44cca9d4c2ddcebd41ffc9 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -7,6 +7,11 @@
 - Fix infinite recursion bug when pickling capture.EncodedFile, thanks
   Uwe Schmitt.
 
+- fix issue589: fix bad interaction with numpy and others when showing
+  exceptions.  Check for precise "maximum recursion depth exceed" exception
+  instead of presuming any RuntimeError is that one (implemented in py
+  dep).  Thanks Charles Cloud for analysing the issue.
+
 
 2.6.2
 -----------

diff -r ac71ee79ffa764c925f2d72ea13b9d2e68eb83de -r 
2ae2ef6e63fc0f25ef44cca9d4c2ddcebd41ffc9 setup.py
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@
 
 
 def main():
-    install_requires = ['py>=1.4.24']
+    install_requires = ['py>=1.4.25.dev2']
     if sys.version_info < (2, 7) or (3,) <= sys.version_info < (3, 2):
         install_requires.append('argparse')
     if sys.platform == 'win32':

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
pytest-commit mailing list
pytest-commit@python.org
https://mail.python.org/mailman/listinfo/pytest-commit

Reply via email to