From bfd00a58ffa7880424c3e611e83cbc3cb44639ca Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 20 Jul 2014 08:51:53 +0200 Subject: [PATCH] bump version, add py34 to tox.ini --- setup.py | 4 ++-- tox.ini | 2 +- xdist/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 79a7a85..26bb42e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="pytest-xdist", - version='1.11.dev1', + version='1.11', description='py.test xdist plugin for distributed testing and loop-on-failing modes', long_description=open('README.txt').read(), license='MIT', @@ -13,7 +13,7 @@ setup( packages = ['xdist'], entry_points = {'pytest11': ['xdist = xdist.plugin'],}, zip_safe=False, - install_requires = ['execnet>=1.1', 'pytest>=2.4.2', 'py>=1.4.21.dev3'], + install_requires = ['execnet>=1.1', 'pytest>=2.4.2', 'py>=1.4.22'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', diff --git a/tox.ini b/tox.ini index b6fe71a..745d6cc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py26,py32,py33,py27,py27-pexpect,py33-pexpect,py26,py26-old,py33-old +envlist=py26,py32,py33,py34,py27,py27-pexpect,py33-pexpect,py26,py26-old,py33-old [testenv] changedir=testing diff --git a/xdist/__init__.py b/xdist/__init__.py index 5f40d56..0606670 100644 --- a/xdist/__init__.py +++ b/xdist/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '1.11.dev1' +__version__ = '1.11'