[tinkerpop] branch 3.4-dev updated (e7f0669 -> 5fdc399)

2021-02-22 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from e7f0669  Improved error message
 add 5fdc399  Changed docker build to use python 3.6.9

No new revisions were added by this update.

Summary of changes:
 docker/Dockerfile | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)



[tinkerpop] 01/02: Changed docker build to use python 3.6.9

2021-02-22 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 5fdc3991da85eea6d524bd2577aea5756d74d3a7
Author: Stephen Mallette 
AuthorDate: Mon Feb 22 16:03:07 2021 -0500

Changed docker build to use python 3.6.9

Not sure what's wrong but something is amiss with pypi/kerberos perhaps on 
other versions. Seems to also fail on 3.6.13 somehow. That needs to be looked 
into but at least 3.6.9 gets a fair build. CTR
---
 docker/Dockerfile | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 8df8940..2d5398e 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -35,13 +35,12 @@ RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk 
git maven openssh-serve
 RUN apt-get install -y --force-yes dotnet-sdk-3.1 mono-devel
 
 # python3 on xenial install 3.5.2 which is insufficient for newer versions of 
python/typing#259 so
-# custom build and install 3.5.3 and upgrade pip along the way. this could be 
resolved by using bionic
-# but trying to keep all of our release branches on the same docker image and 
the older versions sorta
-# suit 3.3.x and 3.4.x
+# custom build and install 3.6.9 and upgrade pip along the way. this could be 
resolved by using bionic
+# but trying to keep all of our release branches on the same docker image and 
the older versions suit 3.4.x+
 RUN apt-get install -y --force-yes python python-dev python-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev libncursesw5-dev 
libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
-RUN cd /opt && wget https://www.python.org/ftp/python/3.5.3/Python-3.5.3.tgz 
&& tar -xvf Python-3.5.3.tgz
-RUN cd /opt/Python-3.5.3 && ./configure && make && make install
-RUN ln -sf /usr/bin/python3.5.3 /usr/bin/python3
+RUN cd /opt && wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz 
&& tar -xvf Python-3.6.9.tgz
+RUN cd /opt/Python-3.6.9 && ./configure && make && make install
+RUN ln -sf /usr/bin/python3.6.9 /usr/bin/python3
 # pip drops support of Python 2 starting from version 21.0
 RUN pip install --upgrade "pip<21.0"
 RUN pip install virtualenv virtualenvwrapper



[tinkerpop] 02/02: Merge branch '3.4-dev'

2021-02-22 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit c59bbdd692c37a50b724052f8641f102ad982ddc
Merge: 14dff29 5fdc399
Author: Stephen Mallette 
AuthorDate: Mon Feb 22 16:29:04 2021 -0500

Merge branch '3.4-dev'

 docker/Dockerfile | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --cc docker/Dockerfile
index 62856e6,2d5398e..6fa1f9f
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@@ -35,15 -35,12 +35,14 @@@ RUN apt-get install -y openjdk-8-jdk op
  RUN apt-get install -y --force-yes dotnet-sdk-3.1 mono-devel
  
  # python3 on xenial install 3.5.2 which is insufficient for newer versions of 
python/typing#259 so
- # custom build and install 3.5.3 and upgrade pip along the way. this could be 
resolved by using bionic
- # but trying to keep all of our release branches on the same docker image and 
the older versions sorta
- # suit 3.3.x and 3.4.x
+ # custom build and install 3.6.9 and upgrade pip along the way. this could be 
resolved by using bionic
+ # but trying to keep all of our release branches on the same docker image and 
the older versions suit 3.4.x+
 -RUN apt-get install -y --force-yes python python-dev python-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev libncursesw5-dev 
libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
 +ENV DEBIAN_FRONTEND=noninteractive
 +RUN apt-get install -y python python-dev python-pip build-essential 
checkinstall zlib1g-dev libreadline-gplv2-dev \
 +libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev 
libbz2-dev libkrb5-dev krb5-user
- RUN cd /opt && wget https://www.python.org/ftp/python/3.5.3/Python-3.5.3.tgz 
&& tar -xvf Python-3.5.3.tgz
- RUN cd /opt/Python-3.5.3 && ./configure && make && make install
- RUN ln -sf /usr/bin/python3.5.3 /usr/bin/python3
+ RUN cd /opt && wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz 
&& tar -xvf Python-3.6.9.tgz
+ RUN cd /opt/Python-3.6.9 && ./configure && make && make install
+ RUN ln -sf /usr/bin/python3.6.9 /usr/bin/python3
  # pip drops support of Python 2 starting from version 21.0
  RUN pip install --upgrade "pip<21.0"
  RUN pip install virtualenv virtualenvwrapper



[tinkerpop] branch master updated (14dff29 -> c59bbdd)

2021-02-22 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 14dff29  Modified contributor list CTR
 new 5fdc399  Changed docker build to use python 3.6.9
 new c59bbdd  Merge branch '3.4-dev'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/Dockerfile | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)