fix issue413: exceptions with unicode attributes are now printed
correctly also on python2 and with pytest-xdist runs. (the fix requires py-1.4.20)
This commit is contained in:
parent
d02d0bb7b7
commit
cccfaa81fb
|
@ -11,6 +11,9 @@ UNRELEASED
|
||||||
- fix issue425: mention at end of "py.test -h" that --markers
|
- fix issue425: mention at end of "py.test -h" that --markers
|
||||||
and --fixtures work according to specified test path (or current dir)
|
and --fixtures work according to specified test path (or current dir)
|
||||||
|
|
||||||
|
- fix issue413: exceptions with unicode attributes are now printed
|
||||||
|
correctly also on python2 and with pytest-xdist runs. (the fix
|
||||||
|
requires py-1.4.20)
|
||||||
|
|
||||||
2.5.1
|
2.5.1
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -17,7 +17,7 @@ classifiers=['Development Status :: 6 - Mature',
|
||||||
|
|
||||||
long_description = open("README.rst").read()
|
long_description = open("README.rst").read()
|
||||||
def main():
|
def main():
|
||||||
install_requires = ["py>=1.4.19"]
|
install_requires = ["py>=1.4.20.dev2"]
|
||||||
if sys.version_info < (2,7):
|
if sys.version_info < (2,7):
|
||||||
install_requires.append("argparse")
|
install_requires.append("argparse")
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
|
|
Loading…
Reference in New Issue