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 afbe98d580 Do not remove docker provider for Airflow 2.3 check (#30483)
afbe98d580 is described below
commit afbe98d580508b238518e70bc0a65088e99d6581
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Apr 11 19:15:42 2023 +0200
Do not remove docker provider for Airflow 2.3 check (#30483)
This removal is a remnant of old docker provider for 2.2 and should
not be happening.
---
.github/workflows/ci.yml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a19b1a6dfb..fc089b65a5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -750,8 +750,10 @@ jobs:
SKIP_CONSTRAINTS: "${{
needs.build-info.outputs.upgrade-to-newer-dependencies }}"
- name: "Remove airflow package and replace providers with 2.3-compliant
versions"
run: |
- rm -vf dist/apache_airflow-*.whl
dist/apache_airflow_providers_docker*.whl
- pip download --no-deps --dest dist
apache-airflow-providers-docker==3.1.0
+ rm -vf dist/apache_airflow-*.whl
+ # remove the provider packages that are not compatible with 2.3
+ # rm -vf dist/apache_airflow_providers_docker*.whl
+ # pip download --no-deps --dest dist
apache-airflow-providers-docker==3.1.0
if: matrix.package-format == 'wheel'
- name: "Get all provider extras as AIRFLOW_EXTRAS env variable"
run: >