topherinternational commented on code in PR #41555: URL: https://github.com/apache/airflow/pull/41555#discussion_r1745540135
########## airflow/providers/cloudant/provider.yaml: ########## @@ -46,7 +47,17 @@ versions: dependencies: - apache-airflow>=2.8.0 - - cloudant>=2.13.0 + - ibmcloudant>=0.9.1 + +excluded-python-versions: + # ibmcloudant transitively brings in urllib3 2.x, but the snowflake provider has a dependency that pins + # urllib3 to 1.x on Python 3.8 and 3.9; thus we exclude those Python versions from taking the update + # to ibmcloudant. + # See #21004, #41555, and https://github.com/snowflakedb/snowflake-connector-python/issues/2016 + - "3.8" + - "3.9" + # ibmcloudant brings in ibm-cloud-sdk-core which does not support Python 3.12 + - "3.12" Review Comment: I removed the 3.12 exclusion as I think the test failures were from apache beam and other issues, not the ibmcloudant dependencies. If tests pass we know it's gtg on 3.12. -- 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]
