You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kubernetes version (if you are using kubernetes) (use kubectl version):
Environment: python 3.5.2
Cloud provider or hardware configuration:
OS (e.g. from /etc/os-release): Ubuntu 16.04.6 LTS
Kernel (e.g. uname -a): Linux ubuntu-1604-staging.lan 4.4.0-176-generic Add docstrings to DAG class methods #206-Ubuntu SMP Fri Feb 28 05:02:04 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Install tools: pip 8.1.1
Others:
What happened:
I have installed apache-airflow[postgres] using the distribution-provided pip installer into a virtualenv which was successful. However, after running airflow or airflow initdb I get the following exception:
Apache Airflow version: 1.10.9
Kubernetes version (if you are using kubernetes) (use
kubectl version):Environment: python 3.5.2
uname -a): Linux ubuntu-1604-staging.lan 4.4.0-176-generic Add docstrings to DAG class methods #206-Ubuntu SMP Fri Feb 28 05:02:04 UTC 2020 x86_64 x86_64 x86_64 GNU/LinuxWhat happened:
I have installed
apache-airflow[postgres]using the distribution-provided pip installer into a virtualenv which was successful. However, after runningairfloworairflow initdbI get the following exception:The exception is caused by depending on
typing.ClassVarwhich was only introduced in python 3.5.3Currently the package definition on pypi doesn't set a requirement of
>=3.5.3which it should.What you expected to happen:
How to reproduce it:
Install airflow with
pip install apache-airflowon Python 3.5.2 then runairflowAnything else we need to know: