parent
6aab9bcfb9
commit
3654592959
|
@ -1,17 +1,17 @@
|
||||||
Changes between 1.3.2 and 1.3.3a1
|
Changes between 1.3.2 and 1.3.3
|
||||||
==================================================
|
==================================================
|
||||||
|
|
||||||
- fix issue113: assertion representation problem with triple-quoted strings
|
- fix issue113: assertion representation problem with triple-quoted strings
|
||||||
(and possibly other cases)
|
(and possibly other cases)
|
||||||
- make conftest loading detect that a conftest file with the same
|
- make conftest loading detect that a conftest file with the same
|
||||||
content was already loaded, avoids surprises in nested directory structures
|
content was already loaded, avoids surprises in nested directory structures
|
||||||
that can be produced e.g. by Hudson. It alleviates the need to use
|
which can be produced e.g. by Hudson. It probably removes the need to use
|
||||||
--confcutdir at all.
|
--confcutdir in most cases.
|
||||||
- fix terminal coloring for win32
|
- fix terminal coloring for win32
|
||||||
(thanks Michael Foord for reporting)
|
(thanks Michael Foord for reporting)
|
||||||
- fix weirdness: make terminal width detection work on stdout instead of stdin
|
- fix weirdness: make terminal width detection work on stdout instead of stdin
|
||||||
(thanks Armin Ronacher for reporting)
|
(thanks Armin Ronacher for reporting)
|
||||||
- remove trailing whitespace in all py/text files
|
- remove trailing whitespace in all py/text distribution files
|
||||||
|
|
||||||
Changes between 1.3.1 and 1.3.2
|
Changes between 1.3.1 and 1.3.2
|
||||||
==================================================
|
==================================================
|
||||||
|
|
|
@ -8,7 +8,7 @@ dictionary or an import path.
|
||||||
|
|
||||||
(c) Holger Krekel and others, 2004-2010
|
(c) Holger Krekel and others, 2004-2010
|
||||||
"""
|
"""
|
||||||
__version__ = version = "1.3.3a1"
|
__version__ = version = "1.3.3"
|
||||||
|
|
||||||
import py.apipkg
|
import py.apipkg
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -26,7 +26,7 @@ def main():
|
||||||
name='py',
|
name='py',
|
||||||
description='py.test and pylib: rapid testing and development utils.',
|
description='py.test and pylib: rapid testing and development utils.',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version= '1.3.3a1',
|
version= '1.3.3',
|
||||||
url='http://pylib.org',
|
url='http://pylib.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
|
|
Loading…
Reference in New Issue