commit | 38166b28a6e1614e10b7b279021df28ae40747d7 | [log] [tgz] |
---|---|---|
author | Jordan Pittier <JordanP@users.noreply.github.com> | Tue Jul 16 16:30:12 2019 -0700 |
committer | Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> | Tue Jul 16 16:30:12 2019 -0700 |
tree | 198c3055cc1a412b5a8bb7cdfa4df73ea2818008 | |
parent | 49a18c43a5b39615bad90d23ab33a105fb656a6a [diff] [blame] |
setup.py: set an upper bound on dependencies version (#352) This should make this library more robust in case of breaking changes in one of its dependencies.
diff --git a/setup.py b/setup.py index 73d0f71..4e87a72 100644 --- a/setup.py +++ b/setup.py
@@ -19,9 +19,9 @@ DEPENDENCIES = ( - 'cachetools>=2.0.0', + 'cachetools>=2.0.0,<3.0', 'pyasn1-modules>=0.2.1', - 'rsa>=3.1.4', + 'rsa>=3.1.4,<4.0', 'setuptools>=40.3.0', 'six>=1.9.0', )