From 0eec2b64c7c668e421ef0199dd56ca1bfd5fecc8 Mon Sep 17 00:00:00 2001 From: Dylan Maxwell Date: Fri, 30 Aug 2019 11:40:05 -0400 Subject: [PATCH] Update version history and setup.py --- scan/version.py | 3 ++- setup.py | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/scan/version.py b/scan/version.py index 2516a66..4edfc66 100644 --- a/scan/version.py +++ b/scan/version.py @@ -1,8 +1,9 @@ from __future__ import print_function -__version__ = '1.5.6' +__version__ = '1.6.0' version_history = """ +1.6.0 - Add support for Python3, CPython uses requests library 1.5.6 - wait..() fix 1.5.5 - scanInfo() time out 1.5.4 - Add '!=' to If() and Wait() diff --git a/setup.py b/setup.py index 870b411..cfd60cd 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ ''' from distutils.core import setup setup(name='PyScanClient', - version='0.9.5', + version='1.6.0', description='Python Scan Server Client Lib', author='Qiu Yongxiang, Kay Kasemir', author_email='qiuyongxiang05@gmail.com, kasemirk@ornl.gov', @@ -13,8 +13,9 @@ license = "Eclipse Public License - v 1.0", packages= [ 'scan', 'scan.client', 'scan.commands', 'scan.table', 'scan.util' ], classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', - 'Programming Language :: Python :: 2.7', + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', ] )