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:
parent
0559648b4a
commit
ba7a4fbb96
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
@ -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',
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue