bump version to 2.4.0

This commit is contained in:
holger krekel 2013-10-01 10:43:36 +02:00
parent a71fdd26b3
commit f9927e457b
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
Changes between 2.3.5 and 2.4.DEV
Changes between 2.3.5 and 2.4
-----------------------------------
known incompatibilities:

View File

@ -1,2 +1,2 @@
#
__version__ = '2.4.0.dev14'
__version__ = '2.4.0'

View File

@ -3,7 +3,7 @@ from setuptools import setup, Command
long_description = open("README.rst").read()
def main():
install_requires = ["py>=1.4.15"]
install_requires = ["py>=1.4.16"]
if sys.version_info < (2,7):
install_requires.append("argparse")
@ -11,7 +11,7 @@ def main():
name='pytest',
description='py.test: simple powerful testing with Python',
long_description = long_description,
version='2.4.0.dev14',
version='2.4.0',
url='http://pytest.org',
license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],