From 06bf5b71a9ec896bc15254ffedc771c55ba4f098 Mon Sep 17 00:00:00 2001 From: Matt Morrison Date: Sat, 16 Aug 2014 21:40:19 -0400 Subject: [PATCH] package>=version #, not == --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e6c8e94..64db8d5 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ if sys.argv[-1] == 'publish': setup( name='twython', version=__version__, - install_requires=['requests==2.1.0', 'requests_oauthlib==0.4.0'], + install_requires=['requests>=2.1.0', 'requests_oauthlib>=0.4.0'], author='Ryan McGrath', author_email='ryan@venodesigns.net', license=open('LICENSE').read(),