potiuk commented on pull request #22162: URL: https://github.com/apache/airflow/pull/22162#issuecomment-1065139900
Another option (probably easiest): 4. Check which library uses pandas in the CI Airflow image: * Run the image: ``` docker run -it ghcr.io/apache/airflow/main/ci/python3.7:2276fd417180d89da60d661023bf9b48d6b71c7f ``` Find all packages importing pandas: ``` cd /usr/local/lib/python3.7/site-packages grep -rE "from pandas|import pandas" . 2>/dev/null | grep -v "pycache" | grep ".py:" | cut -d"/" -f2 | sort | uniq ``` Result (short list of candidates to check): ``` apache_beam azure dask db_dtypes distributed elasticsearch fsspec future google hdfs influxdb_client pandas pandas_gbq partd pyarrow pydruid pyexasol pyspark redshift_connector scrapbook snowflake tqdm ``` -- 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]
