From dfb85b994e4b0e875bb799d0a2cd0645cb93272c Mon Sep 17 00:00:00 2001 From: Travis Pavek Date: Fri, 8 Jun 2018 07:28:25 -0500 Subject: [PATCH] version bump --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 479a380..528d726 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import sys from setuptools import setup -install_requires=[ +install_requires = [ 'requests>=2.6.0', 'singledispatch>=3.4.0', 'pyyaml>=3.1.1', @@ -15,12 +15,12 @@ setup( name='testrail', packages=['testrail'], - version='0.3.9', + version='0.3.10', description='Python library for interacting with TestRail via REST APIs.', author='Travis Pavek', author_email='travis.pavek@gmail.com', url='https://github.com/travispavek/testrail-python', - download_url='https://github.com/travispavek/testrail-python/tarball/0.3.9', + download_url='https://github.com/travispavek/testrail-python/tarball/0.3.10', keywords=['testrail', 'api', 'client', 'library', 'rest'], install_requires=install_requires, classifiers=[ @@ -37,9 +37,8 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.6', ], )