Taragolis opened a new pull request, #24431: URL: https://github.com/apache/airflow/pull/24431
Typo fix which prevent install extra packages of google provider. ```shell ❯ pip install "apache-airflow-providers-google[amazon]==8.0.0" Collecting apache-airflow-providers-google[amazon]==8.0.0 ... ERROR: Could not find a version that satisfies the requirement apache-airlfow-providers-facebook>=2.6.0; extra == "amazon" (from apache-airflow-providers-google[amazon]) (from versions: none) ERROR: No matching distribution found for apache-airlfow-providers-facebook>=2.6.0; extra == "amazon" ``` ``` ❯ pip install "apache-airflow-providers-google[facebook]==8.0.0" Collecting apache-airflow-providers-google[facebook]==8.0.0 ... ERROR: Could not find a version that satisfies the requirement apache-airlfow-providers-facebook>=2.2.0; extra == "facebook" (from apache-airflow-providers-google[facebook]) (from versions: none) ERROR: No matching distribution found for apache-airlfow-providers-facebook>=2.2.0; extra == "facebook" ``` Just curious is someone install provider packages by this way? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
