Skip to content

Commit

Permalink
Merge pull request #248 from einarnn/master
Browse files Browse the repository at this point in the history
Merge preparing for 0.5.4 release
  • Loading branch information
einarnn committed Jul 2, 2018
2 parents 33771c2 + e064e28 commit e53d7df
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Expand Up @@ -25,6 +25,10 @@
print ("Sorry, Python < 2.7 is not supported")
exit()

if sys.version_info.major == 3 and sys.version_info.minor == 7:
print ("Sorry, Python 3.7 is not currently supported")
exit()

#parse requirements
req_lines = [line.strip() for line in open("requirements.txt").readlines()]
install_reqs = list(filter(None, req_lines))
Expand All @@ -34,7 +38,7 @@


setup(name='ncclient',
version='0.5.3',
version='0.5.4',
description="Python library for NETCONF clients",
long_description = long_description,
author="Shikhar Bhushan, Leonidas Poulopoulos, Ebben Aries",
Expand All @@ -45,7 +49,7 @@
license="Apache License 2.0",
platforms=["Posix; OS X; Windows"],
keywords=('NETCONF', 'NETCONF Python client', 'Juniper Optimization', 'Cisco NXOS Optimization'),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.7.*',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
Expand Down

0 comments on commit e53d7df

Please sign in to comment.