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/04/20 16:54:10 UTC

[1/2] tinkerpop git commit: Fixed a minor issue with encoding in gremlin-python readme

Repository: tinkerpop
Updated Branches:
  refs/heads/master ac477c16c -> 1fe5791cf


Fixed a minor issue with encoding in gremlin-python readme

Not sure why this was suddenly an issue, but docker builds recently started failing for me with python 3. Used codecs lib to read the file as UTF-8 and that seemed to fix the problem. CTR


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

Branch: refs/heads/master
Commit: 25e367bbd46a286eaf1b6f8278bfb0468c83b764
Parents: 4c6d8a0
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Apr 20 12:52:21 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Apr 20 12:52:21 2017 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/25e367bb/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 da7da68..e6ab493 100644
--- a/gremlin-python/src/main/jython/setup.py
+++ b/gremlin-python/src/main/jython/setup.py
@@ -62,7 +62,7 @@ setup(
     license='Apache 2',
     url='http://tinkerpop.apache.org',
     description='Gremlin-Python for Apache TinkerPop',
-    long_description=open("README").read(),
+    long_description=codecs.open("README", "r", "UTF-8").read(),
     test_suite="tests",
     data_files=[("", ["LICENSE", "NOTICE"])],
     setup_requires=[


[2/2] tinkerpop git commit: Merge branch 'tp32'

Posted by sp...@apache.org.
Merge branch 'tp32'


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

Branch: refs/heads/master
Commit: 1fe5791cfc7529684563427214b9c4e068cb2ad5
Parents: ac477c1 25e367b
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Apr 20 12:53:57 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Apr 20 12:53:57 2017 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------