You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2017/10/16 15:20:17 UTC

[04/47] tinkerpop git commit: Do not strong-freeze dependencies

Do not strong-freeze dependencies


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/64479b3a
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/64479b3a
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/64479b3a

Branch: refs/heads/TINKERPOP-1784
Commit: 64479b3a6c70a006a3493153525c22e271a34b53
Parents: 9f501cd
Author: Alan Boudreault <al...@alanb.ca>
Authored: Tue Oct 3 14:12:48 2017 -0400
Committer: Alan Boudreault <al...@alanb.ca>
Committed: Tue Oct 3 14:12:48 2017 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/setup.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/64479b3a/gremlin-python/src/main/jython/setup.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/setup.py b/gremlin-python/src/main/jython/setup.py
index e6ab493..1804a0d 100644
--- a/gremlin-python/src/main/jython/setup.py
+++ b/gremlin-python/src/main/jython/setup.py
@@ -45,13 +45,13 @@ from gremlin_python import __version__
 version = __version__.version
 
 install_requires = [
-    'aenum==1.4.5',
-    'tornado==4.4.1',
-    'six==1.10.0'
+    'aenum>=1.4.5',
+    'tornado>=4.4.1',
+    'six>=1.10.0'
 ]
 
 if sys.version_info < (3,2):
-    install_requires += ['futures==3.0.5']
+    install_requires += ['futures>=3.0.5']
 
 setup(
     name='gremlinpython',