RafayAK commented on issue #18075: URL: https://github.com/apache/airflow/issues/18075#issuecomment-915130883
My current workaround in my dockerfile: ```bash # install Airflow with constraints file for compatibility ARG AIRFLOW_VERSION=2.0.1 ARG PYTHON_VER=3.7 ARG CONSTRAINT_URL="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-${PYTHON_VER}.txt" RUN pip3 install --upgrade pip && \ pip install -U pip setuptools==58.0.1 wheel \ && pip install "apache-airflow[statsd]==${AIRFLOW_VERSION}" --constraint "${CONSTRAINT_URL}" \ && pip install pyOpenSSL \ && pip install ffmpeg-python ``` -- 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]
