potiuk commented on issue #18705: URL: https://github.com/apache/airflow/issues/18705#issuecomment-933746150
good news @eladkal @uranusjr . I found the culprit: google-ads released 14.0.1 version Sep 29: https://pypi.org/project/google-ads/14.0.1/ Guess what between the version 14.0.0 they bumped minimum google-api-core from 1.31.2 to 2.0.0 However other deps of ours have < 2.0.0 Python 3.6 is not affected becasue there we have version 12.0.0 of google-ads librarty (version 14 is Python 3.7+) ``` google-api-python-client==1.12.8 - google-api-core [required: >=1.21.0,<2dev, installed: 1.31.3] ``` 14.0.0: install_requires: ``` install_requires = [ "google-auth-oauthlib >= 0.3.0, < 1.0.0", # NOTE: Require google-api-core > 1.31.2 until # https://github.com/googleapis/google-cloud-python/issues/10566 # is resolved. Once resolved, require google-api-core >=2.x.x "google-api-core >= 1.31.2, < 3.0.0", <- !!!!!!!!!!!!!!!!!!!!!!!!!! LOOK HERE !!!!!!!!!!!!!!!!!!!!!!!!! "googleapis-common-protos >= 1.5.8, < 2.0.0", "grpcio >= 1.38.1, < 2.0.0", "proto-plus == 1.18.1", "PyYAML >= 5.1, < 6.0", "setuptools >= 40.3.0", "nox == 2020.12.31", ] ```` 14.0.1: install requires: ``` install_requires = [ "google-auth-oauthlib >= 0.3.0, < 1.0.0", "google-api-core >= 2.0.1, < 3.0.0", <- !!!!!!!!!!!!!!!!!!!!!! LOOOK HERE !!!!!!!!!!!!!!!!!!!!!!!!! "googleapis-common-protos >= 1.5.8, < 2.0.0", "grpcio >= 1.38.1, < 2.0.0", "proto-plus == 1.18.1", "PyYAML >= 5.1, < 6.0", "setuptools >= 40.3.0", "nox >= 2020.12.31, < 2022.6", "protobuf >= 3.12.0, < 3.18.0" ] ``` -- 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]
