releax py requirement to allow readthedocs installing pytest dev

This commit is contained in:
holger krekel 2011-07-06 21:44:57 +02:00
parent df85ddf0d2
commit 491f58ab26
1 changed files with 4 additions and 2 deletions

View File

@ -29,7 +29,9 @@ def main():
author='Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others',
author_email='holger at merlinux.eu',
entry_points= make_entry_points(),
install_requires=['py>=1.4.4.dev2'],
# the following should be enabled for release
#install_requires=['py>=1.4.4'],
install_requires=['py>=1.4.3'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
@ -67,4 +69,4 @@ def make_entry_points():
return {'console_scripts': l}
if __name__ == '__main__':
main()
main()