diff options
author | Tommy Carpenter <tommy@research.att.com> | 2018-02-19 20:46:13 -0500 |
---|---|---|
committer | Tommy Carpenter <tommy@research.att.com> | 2018-02-19 20:47:55 -0500 |
commit | e8e4e3878deb5e93ae25f93fe047708a170893ca (patch) | |
tree | f3c7663b5ff9b1280bff5e65bc1788c67edd2209 /dcaeapplib | |
parent | 8c776e128cf557490db59525b29a608e30e637be (diff) |
Dont pin requests version in client lib
Note 0.0.4 was previously reused erronsouly in public pypi so I had to
bump to 0.0.5
Issue-ID: DCAEGEN2-351
Change-Id: Ifd9fbd3f021d07f4ff2beac8aaf5a60ff4a1e317
Signed-off-by: Tommy Carpenter <tommy@research.att.com>
Diffstat (limited to 'dcaeapplib')
-rw-r--r-- | dcaeapplib/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dcaeapplib/setup.py b/dcaeapplib/setup.py index a19fa7c..5811e42 100644 --- a/dcaeapplib/setup.py +++ b/dcaeapplib/setup.py @@ -21,7 +21,7 @@ from setuptools import setup, find_packages setup( name='dcaeapplib', - version='0.0.3', + version='0.0.4', packages=find_packages(), author = 'Andrew Gauld', author_email = 'ag1282@att.com', @@ -30,7 +30,7 @@ setup( keywords = '', url = '', zip_safe = True, - install_requires=[ 'onap-dcae-cbs-docker-client>=0.0.2' ], + install_requires=[ 'onap-dcae-cbs-docker-client>=0.0.5' ], entry_points = { 'console_scripts': [ 'reconfigure.sh=dcaeapplib:reconfigure' |