You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/12/02 16:01:53 UTC

[airflow-site] branch main updated: Fix Python 3.6 failure HOPEFULLY AGAIN (#697)

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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 176a4a2a6d Fix Python 3.6 failure HOPEFULLY AGAIN (#697)
176a4a2a6d is described below

commit 176a4a2a6d5c293808582eeda52a57d280dc6aa6
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Fri Dec 2 17:01:48 2022 +0100

    Fix Python 3.6 failure HOPEFULLY AGAIN (#697)
---
 .github/workflows/build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d06848027f..78460db959 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -121,7 +121,7 @@ jobs:
         run: |
           set -x
           gh auth status
-          VERSION="$(python setup.py --version 2>/dev/null)"
+          VERSION="$(python setup.py --version 2>/dev/null | tail -1)"
           TITLE=$(date "+%Y-%m-%d %H:%M:%S")
           NOTES="Commit: ${GITHUB_COMMIT}
           Source: ${GITHUB_REF}"