potiuk commented on issue #27674:
URL: https://github.com/apache/airflow/issues/27674#issuecomment-1316243022
@r-richmond I cannot reproduce it. Where did you install the rc1 package
from ?
I just double checked and our RC packages have mechanism implemented to cope
with the issue you mentioned and they properly depend on .* version in case of
such a cross-dependency:
```
Requires-Dist: apache-airflow-providers-common-sql (>=1.3.0.*)
```
The `.*` is added automatically when we release and RC package if we depend
on another `apache-airflow` package - specificaly to handle such case.
When I try to install `apache-airflow-providers-google==8.5.0rc1`, it
properly installs and pulls common-sql==1.3.0rc1
```
...
Installing collected packages: chardet, asgiref,
apache-airflow-providers-common-sql, aiofiles, gcloud-aio-auth,
gcloud-aio-storage, gcloud-aio-bigquery, google-cloud-dataform,
google-cloud-compute, apache-airflow-providers-google
Attempting uninstall: apache-airflow-providers-common-sql
Found existing installation: apache-airflow-providers-common-sql 1.1.0
Uninstalling apache-airflow-providers-common-sql-1.1.0:
Successfully uninstalled apache-airflow-providers-common-sql-1.1.0
Attempting uninstall: apache-airflow-providers-google
Found existing installation: apache-airflow-providers-google 8.2.0
Uninstalling apache-airflow-providers-google-8.2.0:
Successfully uninstalled apache-airflow-providers-google-8.2.0
Successfully installed aiofiles-0.8.0
apache-airflow-providers-common-sql-1.3.0rc1
apache-airflow-providers-google-8.5.0rc1 asgiref-3.5.2 chardet-4.0.0
gcloud-aio-auth-4.0.1 gcloud-aio-bigquery-6.1.2 gcloud-aio-storage-7.0.1
google-cloud-compute-0.7.0 google-cloud-dataform-0.2.0
```
So I wonder where your errors came from?
--
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]