diff --git a/airflow/__init__.py b/airflow/__init__.py index baf4833b0e9f3..b7bb5b0b68c8e 100644 --- a/airflow/__init__.py +++ b/airflow/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.4" +__version__ = "0.4.5" ''' Authentication is implemented using flask_login and different environments can diff --git a/setup.py b/setup.py index a51931ab0b32b..1349bf5f1b0aa 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,15 @@ from setuptools import setup, find_packages # Kept manually in sync with airflow.__version__ -version = '0.4.4' +version = '0.4.5' -doc = ['sphinx>=1.2.3', - 'sphinx-argparse>=0.1.13', - 'sphinx-rtd-theme>=0.1.6', - 'Sphinx-PyPI-upload>=0.2.1'] +doc = [ + 'sphinx>=1.2.3', + 'sphinx-argparse>=0.1.13', + 'sphinx-rtd-theme>=0.1.6', + 'Sphinx-PyPI-upload>=0.2.1' +] postgres = ['psycopg2>=2.6'] mysql = ['mysql-python>=1.2.5'] samba = ['pysmbclient>=0.1.3']