From e63f89cff595c09ffaddcdd91c703b6d390e695b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 18 Oct 2021 21:53:46 +0200 Subject: [PATCH] chore: Bump version to 0.8.0 --- .github/workflows/test.yaml | 2 +- airflow_dbt_python/__version__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9d52121..b10aad5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,7 +20,7 @@ jobs: python-version: ${{ matrix.python-version }} - uses: abatilo/actions-poetry@v2.1.3 - name: install - run: poetry install -E amazon + run: poetry install -E amazon -E postgres - name: flake8 run: poetry run flake8 . - name: mypy diff --git a/airflow_dbt_python/__version__.py b/airflow_dbt_python/__version__.py index c847a74..9b2818a 100644 --- a/airflow_dbt_python/__version__.py +++ b/airflow_dbt_python/__version__.py @@ -2,4 +2,4 @@ __author__ = "Tomás Farías Santana" __copyright__ = "Copyright 2021 Tomás Farías Santana" __title__ = "airflow-dbt-python" -__version__ = "0.7.2" +__version__ = "0.8.0" diff --git a/pyproject.toml b/pyproject.toml index 400abbc..47f2c1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "airflow-dbt-python" -version = "0.7.2" +version = "0.8.0" description = "A dbt operator for Airflow that uses the dbt Python package" authors = ["Tomás Farías Santana "] license = "MIT" @@ -21,7 +21,7 @@ dbt-core = ">=0.19, < 0.22" Flask-OpenID = ">=1.3.0" apache-airflow-providers-amazon = { version = "^2.1.0", optional = true } -dbt-postgres = "0.21" +dbt-postgres = { version = ">=0.19, < 0.22", optional = true } dbt-redshift = { version = ">=0.19, < 0.22", optional = true } dbt-snowflake = { version = ">=0.19, < 0.22", optional = true } dbt-bigquery = { version = ">=0.19, < 0.22", optional = true }