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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6588554aa4cc [SPARK-48149][INFRA][FOLLOWUP] Use single quotation mark
6588554aa4cc is described below

commit 6588554aa4cc3c7f57d762e0b159d05dc70d75aa
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Wed May 8 11:35:19 2024 +0900

    [SPARK-48149][INFRA][FOLLOWUP] Use single quotation mark
    
    ### What changes were proposed in this pull request?
    
    This is a follow-up of
    - #46407
    
    ### Why are the changes needed?
    
    To fix the invalid syntax error
    - https://github.com/apache/spark/actions/runs/8989374763
    > The workflow is not valid. .github/workflows/build_python.yml (Line: 37, 
Col: 24): Unexpected symbol: '"pypy3"'.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Manual review.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #46454 from dongjoon-hyun/SPARK-48149-2.
    
    Authored-by: Dongjoon Hyun <dh...@apple.com>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 .github/workflows/build_python.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build_python.yml 
b/.github/workflows/build_python.yml
index 9195dc4af518..efa281d6a279 100644
--- a/.github/workflows/build_python.yml
+++ b/.github/workflows/build_python.yml
@@ -34,9 +34,9 @@ jobs:
       fail-fast: false
       matrix:
         include:
-          - pyversion: ${{ github.event.schedule == '0 15 * * *' && "pypy3" }}
-          - pyversion: ${{ github.event.schedule == '0 17 * * *' && 
"python3.10" }}
-          - pyversion: ${{ github.event.schedule == '0 19 * * *' && 
"python3.12" }}
+          - pyversion: ${{ github.event.schedule == '0 15 * * *' && 'pypy3' }}
+          - pyversion: ${{ github.event.schedule == '0 17 * * *' && 
'python3.10' }}
+          - pyversion: ${{ github.event.schedule == '0 19 * * *' && 
'python3.12' }}
     permissions:
       packages: write
     name: Run


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to