From 23f5f1000afc9b0fb21d2e936ef9de6f0720c8ae Mon Sep 17 00:00:00 2001 From: Nicholas Date: Wed, 4 Mar 2020 15:10:39 -0500 Subject: [PATCH] Allowing newer version of dependencies, so this lib doesn't downgrade if you have --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5d30ca6..fecb7a7 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ author_email='erikbern@better.com', py_modules=['jsonschema2db'], install_requires=[ - 'change_case==0.5.2', - 'iso8601==0.1.12', - 'psycopg2==2.7.2' + 'change_case>=0.5.2', + 'iso8601>=0.1.12', + 'psycopg2>=2.7.2' ])