You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2023/11/22 17:04:31 UTC

(atlas) branch branch-2.0 updated: ATLAS-4184: updated build/python scripts to replace references to python with python3

This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 87fb3a4a4 ATLAS-4184: updated build/python scripts to replace references to python with python3
87fb3a4a4 is described below

commit 87fb3a4a4e3eae1b89909ac052139be1e0f164ee
Author: Madhan Neethiraj <ma...@apache.org>
AuthorDate: Tue Nov 21 17:47:19 2023 -0800

    ATLAS-4184: updated build/python scripts to replace references to python with python3
    
    (cherry picked from commit 0f331aa63095bae010f2c4cb0a76e58eb5606e1b)
---
 dev-support/atlas-docker/Dockerfile.atlas-base              | 2 +-
 distro/pom.xml                                              | 2 +-
 distro/src/bin/atlas_admin.py                               | 2 +-
 distro/src/bin/atlas_client_cmdline.py                      | 2 +-
 distro/src/bin/atlas_config.py                              | 2 +-
 distro/src/bin/atlas_kafka_setup.py                         | 2 +-
 distro/src/bin/atlas_kafka_setup_hook.py                    | 2 +-
 distro/src/bin/atlas_start.py                               | 2 +-
 distro/src/bin/atlas_stop.py                                | 2 +-
 distro/src/bin/atlas_update_simple_auth_json.py             | 2 +-
 distro/src/bin/cputil.py                                    | 2 +-
 distro/src/bin/quick_start.py                               | 2 +-
 distro/src/bin/quick_start_v1.py                            | 2 +-
 distro/src/test/mock/setup.py                               | 2 +-
 distro/src/test/python/scripts/TestMetadata.py              | 2 +-
 distro/src/test/python/unitTests.py                         | 2 +-
 tools/atlas-index-repair/src/main/resources/repair_index.py | 2 +-
 tools/atlas-migration-exporter/atlas_migration_export.py    | 2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/dev-support/atlas-docker/Dockerfile.atlas-base b/dev-support/atlas-docker/Dockerfile.atlas-base
index 4aa225c16..6a39586b7 100644
--- a/dev-support/atlas-docker/Dockerfile.atlas-base
+++ b/dev-support/atlas-docker/Dockerfile.atlas-base
@@ -23,7 +23,7 @@ ARG ATLAS_BASE_JAVA_VERSION
 # Install tzdata, Python, Java
 RUN apt-get update && \
     DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata \
-    python python3 python3-pip openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk bc iputils-ping ssh pdsh
+    python3 python3-pip openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk bc iputils-ping ssh pdsh
 
 # Set environment variables
 ENV JAVA_HOME     /usr/lib/jvm/java-${ATLAS_BASE_JAVA_VERSION}-openjdk-${TARGETARCH}
diff --git a/distro/pom.xml b/distro/pom.xml
index a8585562e..7d4179ff4 100644
--- a/distro/pom.xml
+++ b/distro/pom.xml
@@ -572,7 +572,7 @@ atlas.graph.storage.conf-file=${sys:atlas.home}/conf/cassandra.yml
                     <execution>
                         <configuration>
                             <skip>${skipTests}</skip>
-                            <executable>python</executable>
+                            <executable>python3</executable>
                             <workingDirectory>src/test/python</workingDirectory>
                             <arguments>
                                 <argument>unitTests.py</argument>
diff --git a/distro/src/bin/atlas_admin.py b/distro/src/bin/atlas_admin.py
index 795a5716f..e7413d3ae 100644
--- a/distro/src/bin/atlas_admin.py
+++ b/distro/src/bin/atlas_admin.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_client_cmdline.py b/distro/src/bin/atlas_client_cmdline.py
index f05a3c8f9..1691526e2 100644
--- a/distro/src/bin/atlas_client_cmdline.py
+++ b/distro/src/bin/atlas_client_cmdline.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_config.py b/distro/src/bin/atlas_config.py
index 31e6fd043..70030ac5c 100755
--- a/distro/src/bin/atlas_config.py
+++ b/distro/src/bin/atlas_config.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_kafka_setup.py b/distro/src/bin/atlas_kafka_setup.py
index c13030e88..4451a5bcd 100644
--- a/distro/src/bin/atlas_kafka_setup.py
+++ b/distro/src/bin/atlas_kafka_setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_kafka_setup_hook.py b/distro/src/bin/atlas_kafka_setup_hook.py
index cd8c0c3ca..6dc8d08a3 100644
--- a/distro/src/bin/atlas_kafka_setup_hook.py
+++ b/distro/src/bin/atlas_kafka_setup_hook.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_start.py b/distro/src/bin/atlas_start.py
index ffbe16271..f7d51c090 100755
--- a/distro/src/bin/atlas_start.py
+++ b/distro/src/bin/atlas_start.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_stop.py b/distro/src/bin/atlas_stop.py
index b9cd63689..2132ee698 100755
--- a/distro/src/bin/atlas_stop.py
+++ b/distro/src/bin/atlas_stop.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/atlas_update_simple_auth_json.py b/distro/src/bin/atlas_update_simple_auth_json.py
index 11c249d9b..fbd3eae20 100755
--- a/distro/src/bin/atlas_update_simple_auth_json.py
+++ b/distro/src/bin/atlas_update_simple_auth_json.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/cputil.py b/distro/src/bin/cputil.py
index 8e99f95bc..bf93cec52 100755
--- a/distro/src/bin/cputil.py
+++ b/distro/src/bin/cputil.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/quick_start.py b/distro/src/bin/quick_start.py
index 78517f865..a99f74d69 100755
--- a/distro/src/bin/quick_start.py
+++ b/distro/src/bin/quick_start.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/bin/quick_start_v1.py b/distro/src/bin/quick_start_v1.py
index 1c5775a68..0c7bb92f2 100755
--- a/distro/src/bin/quick_start_v1.py
+++ b/distro/src/bin/quick_start_v1.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/distro/src/test/mock/setup.py b/distro/src/test/mock/setup.py
index 3639df4a1..08d8e4744 100644
--- a/distro/src/test/mock/setup.py
+++ b/distro/src/test/mock/setup.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 
 # Copyright (C) 2007-2012 Michael Foord & the mock team
 # E-mail: fuzzyman AT voidspace DOT org DOT uk
diff --git a/distro/src/test/python/scripts/TestMetadata.py b/distro/src/test/python/scripts/TestMetadata.py
index b813f927f..bebf35e5b 100644
--- a/distro/src/test/python/scripts/TestMetadata.py
+++ b/distro/src/test/python/scripts/TestMetadata.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 '''
 Licensed to the Apache Software Foundation (ASF) under one
diff --git a/distro/src/test/python/unitTests.py b/distro/src/test/python/unitTests.py
index ec1a78cb9..5e5886a08 100644
--- a/distro/src/test/python/unitTests.py
+++ b/distro/src/test/python/unitTests.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Licensed to the Apache Software Foundation (ASF) under one
diff --git a/tools/atlas-index-repair/src/main/resources/repair_index.py b/tools/atlas-index-repair/src/main/resources/repair_index.py
index 0333dadca..d72c2c907 100755
--- a/tools/atlas-index-repair/src/main/resources/repair_index.py
+++ b/tools/atlas-index-repair/src/main/resources/repair_index.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/tools/atlas-migration-exporter/atlas_migration_export.py b/tools/atlas-migration-exporter/atlas_migration_export.py
index e1b12f609..f57f39d05 100755
--- a/tools/atlas-migration-exporter/atlas_migration_export.py
+++ b/tools/atlas-migration-exporter/atlas_migration_export.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more