Kengo Seki created AIRFLOW-2646:
-----------------------------------
Summary: Fix setup.py not to install snakebite on Python3
Key: AIRFLOW-2646
URL: https://issues.apache.org/jira/browse/AIRFLOW-2646
Project: Apache Airflow
Issue Type: Bug
Components: ci
Reporter: Kengo Seki
Assignee: Kengo Seki
setup.py has the following lines:
{code:title=setup.py}
229 if PY3:
230 devel_ci = [package for package in devel_all if package not in
231 ['snakebite>=2.7.8', 'snakebite[kerberos]>=2.7.8']]
{code}
but it doesn't work as expected:
{code}
$ pip3 install --upgrade -e ".[devel_ci]"
(snip)
Running setup.py install for snakebite ... done
(snip)
Successfully installed (snip) snakebite-2.11.0 (snip)
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)