Merge pull request #176 from qedsoftware/develop

Don't pin exact versions in install_requires.
This commit is contained in:
Juan Ignacio Fiorentino 2017-05-18 23:57:10 -03:00 committed by GitHub
commit 127bf8045d

View file

@ -37,11 +37,11 @@ setup(
],
test_suite='runtests.runtests',
tests_require=[
'pyjwkest==1.3.0',
'mock==2.0.0',
'pyjwkest>=1.3.0',
'mock>=2.0.0',
],
install_requires=[
'pyjwkest==1.3.0',
'pyjwkest>=1.3.0',
],
)