Skip to content

Commit 0eec2b6

Browse files
committed
Update version history and setup.py
1 parent fe34d14 commit 0eec2b6

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

scan/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from __future__ import print_function
22

3-
__version__ = '1.5.6'
3+
__version__ = '1.6.0'
44

55
version_history = """
6+
1.6.0 - Add support for Python3, CPython uses requests library
67
1.5.6 - wait..() fix
78
1.5.5 - scanInfo() time out
89
1.5.4 - Add '!=' to If() and Wait()

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@
55
'''
66
from distutils.core import setup
77
setup(name='PyScanClient',
8-
version='0.9.5',
8+
version='1.6.0',
99
description='Python Scan Server Client Lib',
1010
author='Qiu Yongxiang, Kay Kasemir',
1111
author_email='qiuyongxiang05@gmail.com, kasemirk@ornl.gov',
1212
url = 'https://github.com/PythonScanClient',
1313
license = "Eclipse Public License - v 1.0",
1414
packages= [ 'scan', 'scan.client', 'scan.commands', 'scan.table', 'scan.util' ],
1515
classifiers=[
16-
'Development Status :: 3 - Alpha',
17-
'Intended Audience :: Developers',
18-
'Programming Language :: Python :: 2.7',
16+
'Development Status :: 3 - Alpha',
17+
'Intended Audience :: Developers',
18+
'Programming Language :: Python :: 2.7',
19+
'Programming Language :: Python :: 3',
1920
]
2021
)

0 commit comments

Comments
 (0)