From 68baf0c9de133df5b33bcf5b3d043a177f07358f Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Wed, 4 Feb 2015 11:53:52 +0100 Subject: [PATCH] Release version --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b43a75f94..33d9ae99e 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def run_tests(self): setup( name="oic", - version="0.6.1", + version="0.7.0", description="Python implementation of OAuth2 and OpenID Connect", author="Roland Hedberg", author_email="roland.hedberg@adm.umu.se", @@ -61,8 +61,7 @@ def run_tests(self): }, install_requires=[ "requests", "pycrypto>=2.6.1", "pyjwkest>=0.5.1", - "mako", "beaker", "alabaster", "pyOpenSSL", - "python-ldap"] + extra_install_requires, + "mako", "beaker", "alabaster", "pyOpenSSL"] + extra_install_requires, tests_require=['pytest', 'httpretty'], zip_safe=False, cmdclass={'test': PyTest},