update changelog/author info, bump version number
This commit is contained in:
parent
3bcda48ba4
commit
baf5b5d005
1
AUTHORS
1
AUTHORS
|
@ -51,6 +51,7 @@ Marc Schlaich
|
||||||
Mark Abramowitz
|
Mark Abramowitz
|
||||||
Markus Unterwaditzer
|
Markus Unterwaditzer
|
||||||
Martijn Faassen
|
Martijn Faassen
|
||||||
|
Michael Droettboom
|
||||||
Nicolas Delaby
|
Nicolas Delaby
|
||||||
Pieter Mulder
|
Pieter Mulder
|
||||||
Piotr Banaszkiewicz
|
Piotr Banaszkiewicz
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
to passing "fEsxXw" explicitly (isse960).
|
to passing "fEsxXw" explicitly (isse960).
|
||||||
Thanks Abhijeet Kasurde for the PR.
|
Thanks Abhijeet Kasurde for the PR.
|
||||||
|
|
||||||
|
- avoid python3.5 deprecation warnings by introducing version
|
||||||
|
specific inspection helpers, thanks Michael Droettboom.
|
||||||
|
|
||||||
- fix issue562: @nose.tools.istest now fully respected.
|
- fix issue562: @nose.tools.istest now fully respected.
|
||||||
|
|
||||||
- fix issue934: when string comparison fails and a diff is too large to display
|
- fix issue934: when string comparison fails and a diff is too large to display
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#
|
#
|
||||||
__version__ = '2.8.0.dev5'
|
__version__ = '2.8.0.dev6'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -67,7 +67,7 @@ def main():
|
||||||
url='http://pytest.org',
|
url='http://pytest.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
author='Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others',
|
author='Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others',
|
||||||
author_email='holger at merlinux.eu',
|
author_email='holger at merlinux.eu',
|
||||||
entry_points=make_entry_points(),
|
entry_points=make_entry_points(),
|
||||||
classifiers=classifiers,
|
classifiers=classifiers,
|
||||||
|
|
Loading…
Reference in New Issue