From 5488b6d9a137d71b3624530ea7591bd2963520da Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 16 Dec 2011 10:47:33 +0000 Subject: [PATCH] bump versions --- setup.py | 6 +++--- xdist/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index a67b81e..251d5a5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="pytest-xdist", - version='1.8.dev2', + version='1.8', description='py.test xdist plugin for distributed testing and loop-on-failing modes', long_description=open('README.txt').read(), license='GPLv2 or later', @@ -13,7 +13,7 @@ setup( packages = ['xdist'], entry_points = {'pytest11': ['xdist = xdist.plugin'],}, zip_safe=False, - install_requires = ['execnet>=1.0.8', 'pytest>=2.2.1.dev2'], + install_requires = ['execnet>=1.0.8', 'pytest>=2.2.1'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', @@ -27,4 +27,4 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 3', ], -) +) \ No newline at end of file diff --git a/xdist/__init__.py b/xdist/__init__.py index bb8beb5..e82368a 100644 --- a/xdist/__init__.py +++ b/xdist/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '1.8.dev2' +__version__ = '1.8'