diff --git a/setup.py b/setup.py index 54ff265..df3e3f0 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ from setuptools import setup, find_packages import sys + extra_kwargs = {} if sys.version_info >= (3,): extra_kwargs['setup_requires'] = ['setuptools'] @@ -22,7 +23,7 @@ setup( name="python-taiga", - version="0.8.2", + version="0.8.3", packages=find_packages(), include_package_data=True, description="Taiga python API", diff --git a/taiga/__init__.py b/taiga/__init__.py index ebde38c..83a3277 100644 --- a/taiga/__init__.py +++ b/taiga/__init__.py @@ -5,7 +5,7 @@ """ Taiga Python API library """ -__version__ = '0.8.2' +__version__ = '0.8.3' __author__ = 'Nephila' __license__ = 'MIT'