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:
parent
19f3e06ab0
commit
51688270ac
1
AUTHORS
1
AUTHORS
|
@ -6,6 +6,7 @@ Contributors include::
|
||||||
Ronny Pfannschmidt
|
Ronny Pfannschmidt
|
||||||
Benjamin Peterson
|
Benjamin Peterson
|
||||||
Floris Bruynooghe
|
Floris Bruynooghe
|
||||||
|
Jason R. Coombs
|
||||||
Samuele Pedroni
|
Samuele Pedroni
|
||||||
Carl Friedrich Bolz
|
Carl Friedrich Bolz
|
||||||
Armin Rigo
|
Armin Rigo
|
||||||
|
|
|
@ -2,8 +2,12 @@ Changes between 2.3.5 and DEV
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
- (experimental) allow fixture functions to be
|
- (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
|
Changes between 2.3.4 and 2.3.5
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -21,7 +21,7 @@ def main():
|
||||||
entry_points= make_entry_points(),
|
entry_points= make_entry_points(),
|
||||||
cmdclass = {'test': PyTest},
|
cmdclass = {'test': PyTest},
|
||||||
# the following should be enabled for release
|
# the following should be enabled for release
|
||||||
install_requires=['py>=1.4.13dev6'],
|
install_requires=['py>=1.4.14'],
|
||||||
classifiers=['Development Status :: 6 - Mature',
|
classifiers=['Development Status :: 6 - Mature',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
|
|
Loading…
Reference in New Issue