Don't pin exact versions in install_requires.

According to this: https://packaging.python.org/requirements/#install-requires-vs-requirements-files , dependencies should not be pinned to exact versions.
This commit is contained in:
Franciszek Piszcz 2017-04-23 15:27:59 +02:00 committed by GitHub
parent 0559648b4a
commit ba7a4fbb96

View file

@ -36,11 +36,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',
],
)