Taragolis commented on code in PR #39513:
URL: https://github.com/apache/airflow/pull/39513#discussion_r1596685810
##########
scripts/docker/entrypoint_ci.sh:
##########
@@ -205,6 +205,8 @@ function determine_airflow_to_use() {
mkdir -p "${AIRFLOW_SOURCES}"/tmp/
else
python "${IN_CONTAINER_DIR}/install_airflow_and_providers.py"
+ # Some packages might leave legacy typing module which causes test
issues
+ pip uninstall -y typing || true
Review Comment:
Yep, I've also recently found this one, and this comes from
[`yandex-query-client`](https://github.com/yandex-cloud/yandex-query-client/blob/8a8051572ab52686eb1338e6c2968fe512fb6a6f/pyproject.toml#L24).
I've already asked @uzhastik (I guess he's on holiday until Monday) to remove
this one from package dependencies since it make only sense in Python < 3.5.
--
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]