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

raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new c455d6b8c4 GH-43933: [CI] Remove docker-compose warnings (#43934)
c455d6b8c4 is described below

commit c455d6b8c4ae2cb22baceb4c27e1325b973d39e1
Author: Lysandros Nikolaou <lisandros...@gmail.com>
AuthorDate: Tue Sep 3 16:32:07 2024 +0200

    GH-43933: [CI] Remove docker-compose warnings (#43934)
    
    
    
    ### Rationale for this change
    
    Remove `docker-compose` warnings to avoid confusion when running 
`docker-compose` and see them appear at the top. The two warnings are about:
    
    - `PYTHON_IMAGE_TAG` not having a default value in `.env`
    - `version` in `docker-compose.yml` is obsolete and should be removed.
    
    ### What changes are included in this PR?
    
    - Add a `PYTHON_IMAGE_TAG` default value in `.env`
    - Remove `version` from `docker-compose.yml`
    
    ### Are these changes tested?
    
    Yes, the warnings are removed with these changes.
    
    ### Are there any user-facing changes?
     No.
    
    * GitHub Issue: #43933
    
    Authored-by: Lysandros Nikolaou <lisandros...@gmail.com>
    Signed-off-by: Raúl Cumplido <raulcumpl...@gmail.com>
---
 .env               | 1 +
 docker-compose.yml | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.env b/.env
index af647fc8b7..c8c236d5ac 100644
--- a/.env
+++ b/.env
@@ -71,6 +71,7 @@ NUMBA=latest
 NUMPY=latest
 PANDAS=latest
 PYTHON=3.8
+PYTHON_IMAGE_TAG=3.8
 R=4.4
 SPARK=master
 TURBODBC=latest
diff --git a/docker-compose.yml b/docker-compose.yml
index 97d6e1158e..19a9dd0de3 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -53,8 +53,6 @@
 #
 # See more in cpp/build-support/run-test.sh::print_coredumps
 
-version: '3.5'
-
 x-common: &common
   GITHUB_ACTIONS:
 

Reply via email to