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.git


The following commit(s) were added to refs/heads/main by this push:
     new 8b13c167a5 Fix extra "USE_AIRFLOW_VERSION" variable set in sdist 
package check (#36154)
8b13c167a5 is described below

commit 8b13c167a51f8b7f6034b2be62d2c454ade307a0
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Dec 10 17:12:53 2023 +0100

    Fix extra "USE_AIRFLOW_VERSION" variable set in sdist package check (#36154)
    
    When we are testing packages in main, we also test sdist packages,
    and main is the only build we run it, so when implementing #36131
    we had no chance to test it. There was an etra USE_AIRFLOW_VERSION
    variable set in the job and it caused failed attempt of reinstalling
    sdist package when entering constraints generation.
    
    This variable is now removed, only the --use-airflow-version flags
    in breeze commands that need it are used.
---
 .github/workflows/ci.yml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 577eccdbbd..0e6e3c1b75 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -804,7 +804,6 @@ jobs:
     env:
       RUNS_ON: "${{needs.build-info.outputs.runs-on}}"
       PYTHON_MAJOR_MINOR_VERSION: 
"${{needs.build-info.outputs.default-python-version}}"
-      USE_AIRFLOW_VERSION: "sdist"
     if: >
       needs.build-info.outputs.canary-run == 'true' &&
       needs.build-info.outputs.skip-provider-tests != 'true'

Reply via email to