bump version to 2.4.0
This commit is contained in:
parent
a71fdd26b3
commit
f9927e457b
|
@ -1,4 +1,4 @@
|
||||||
Changes between 2.3.5 and 2.4.DEV
|
Changes between 2.3.5 and 2.4
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
known incompatibilities:
|
known incompatibilities:
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#
|
#
|
||||||
__version__ = '2.4.0.dev14'
|
__version__ = '2.4.0'
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup, Command
|
||||||
|
|
||||||
long_description = open("README.rst").read()
|
long_description = open("README.rst").read()
|
||||||
def main():
|
def main():
|
||||||
install_requires = ["py>=1.4.15"]
|
install_requires = ["py>=1.4.16"]
|
||||||
if sys.version_info < (2,7):
|
if sys.version_info < (2,7):
|
||||||
install_requires.append("argparse")
|
install_requires.append("argparse")
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ def main():
|
||||||
name='pytest',
|
name='pytest',
|
||||||
description='py.test: simple powerful testing with Python',
|
description='py.test: simple powerful testing with Python',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version='2.4.0.dev14',
|
version='2.4.0',
|
||||||
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'],
|
||||||
|
|
Loading…
Reference in New Issue