dheerajturaga commented on issue #48824: URL: https://github.com/apache/airflow/issues/48824#issuecomment-2780122184
Here's a work around: download the wheel ``` wget https://files.pythonhosted.org/packages/cf/6e/41c816bace2382dff226a8bacf45f69b08394bfc215e44ce3f9b6a3df5c5/apache_airflow-3.0.0rc1-py3-none-any.whl ``` extract the wheel using ``` unzip your_package.whl -d extracted_package ``` edit apache-airflow-core==3.0.0 to apache-airflow-core==3.0.0rc1 in `extracted_package/apache_airflow-3.0.0rc1.dist-info/METADATA` Repackage it using ``` cd extracted_package wheel pack . ``` Note: you may need `pip3 install wheel` to get going now you can install it with ``` pip3 install extracted_package/apache_airflow-3.0.0rc1-py3-none-any.whl --constraint https://raw.githubusercontent.com/apache/airflow/constraints-3.0.0rc1/constraints-3.11.txt ``` -- 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]
