This is an automated email from the ASF dual-hosted git repository. jscheffl pushed a commit to branch feature/drop-python3.8-support-core-and-providers-v2-10-backport in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 84deb9753072745f098c0f5afc3c1ef5a9e0b155 Author: Jens Scheffler <[email protected]> AuthorDate: Sun Oct 6 13:06:26 2024 +0200 Fix constraints problem with cloudant in python 3.9 (cherry picked from commit 4375185eb0f7a8afd2305b0661f73733f5641a3d) --- .github/workflows/check-providers.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/check-providers.yml b/.github/workflows/check-providers.yml index 622a67fea97..c788590391f 100644 --- a/.github/workflows/check-providers.yml +++ b/.github/workflows/check-providers.yml @@ -104,6 +104,11 @@ jobs: run: > breeze release-management generate-issue-content-providers --only-available-in-dist --disable-progress + - name: > + Remove incompatible Python ${{ matrix.python-version }} provider packages + run: | + echo "Removing Python 3.9-incompatible provider: cloudant" + rm -vf dist/apache_airflow_providers_cloudant* - name: "Generate source constraints from CI image" shell: bash run: >
