From 87c231b622319179283e2f7a273467da72f5807c Mon Sep 17 00:00:00 2001 From: erm0l0v Date: Wed, 1 Jul 2015 11:54:28 +0300 Subject: [PATCH] clear envs --- .travis.yml | 11 ----------- HISTORY.rst | 6 ++++++ python_wrap_cases/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 25c144f..39bb7c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,17 +9,6 @@ python: - "2.7" - "2.6" - "pypy" -env: - - PYTHON_VM=cpython -matrix: - include: - - python: 2.7 - env: PYTHON_VM=ironpython - - python: pypy - env: PYTHON_VM=pypy - exclude: - - python: pypy - env: PYTHON_VM=cpython # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors diff --git a/HISTORY.rst b/HISTORY.rst index e731bf5..302353b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -29,3 +29,9 @@ History -------------------- * README remove ::; + + +0.1.6 (2015-07-01) +-------------------- + +* Add tests fot python 3.2 diff --git a/python_wrap_cases/__init__.py b/python_wrap_cases/__init__.py index f03be5c..5a1735e 100755 --- a/python_wrap_cases/__init__.py +++ b/python_wrap_cases/__init__.py @@ -2,6 +2,6 @@ __author__ = 'Kirill Ermolov' __email__ = 'erm0l0v@ya.ru' -__version__ = '0.1.5' +__version__ = '0.1.6' from .wrap_cases import * \ No newline at end of file diff --git a/setup.py b/setup.py index fd5665e..0f71c63 100755 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def load_requirements(file_name): setup( name='python_wrap_cases', - version='0.1.5', + version='0.1.6', description="Simple library for generate test cases.", long_description=readme + '\n\n' + history, author="Kirill Ermolov",