Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scan/version.py
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
'''
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',
url = 'https://github.com/PythonScanClient',
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',
]
)