implemented as context managers. Thanks Andreas Pelme,

ladimir Keleshev.
fix issue245 by depending on the released py-1.4.14
which fixes py.io.dupfile to work with files with no
mode. Thanks Jason R. Coombs.
This commit is contained in:
holger krekel 2013-05-07 10:53:31 +02:00
parent 19f3e06ab0
commit 51688270ac
3 changed files with 7 additions and 2 deletions

View File

@ -6,6 +6,7 @@ Contributors include::
Ronny Pfannschmidt
Benjamin Peterson
Floris Bruynooghe
Jason R. Coombs
Samuele Pedroni
Carl Friedrich Bolz
Armin Rigo

View File

@ -2,8 +2,12 @@ Changes between 2.3.5 and DEV
-----------------------------------
- (experimental) allow fixture functions to be
implemented as context managers
implemented as context managers. Thanks Andreas Pelme,
ladimir Keleshev.
- fix issue245 by depending on the released py-1.4.14
which fixes py.io.dupfile to work with files with no
mode. Thanks Jason R. Coombs.
Changes between 2.3.4 and 2.3.5

View File

@ -21,7 +21,7 @@ def main():
entry_points= make_entry_points(),
cmdclass = {'test': PyTest},
# the following should be enabled for release
install_requires=['py>=1.4.13dev6'],
install_requires=['py>=1.4.14'],
classifiers=['Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',