Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ jobs:
poetry env use ${{ matrix.python-version }}
poetry add "apache-airflow~=${{ matrix.airflow-version }}.0" \
"dbt-core~=${{ matrix.dbt-version }}.0" \
"dbt-postgres~=${{ matrix.dbt-version }}.0" \
--python ${{ matrix.python-version }}
poetry install -E postgres --with dev
poetry install -E adapters --with dev
poetry run airflow db migrate
poetry run airflow connections create-default-connections

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Before using *airflow-dbt-python*, ensure you meet the following requirements:
* If using any managed service, like AWS MWAA or GCP Cloud Composer 2/3, ensure your environment is created with a supported version of Airflow.
* If self-hosting, Airflow installation instructions can be found in their [official documentation](https://airflow.apache.org/docs/apache-airflow/stable/installation/index.html).

* Running Python 3.8 or later in your Airflow environment.
* Running Python 3.9 or later in your Airflow environment.

> **Warning**
>
Expand Down
2 changes: 1 addition & 1 deletion airflow_dbt_python/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
__author__ = "Tomás Farías Santana"
__copyright__ = "Copyright 2021 Tomás Farías Santana"
__title__ = "airflow-dbt-python"
__version__ = "2.2.0"
__version__ = "3.0.0"
2 changes: 1 addition & 1 deletion airflow_dbt_python/hooks/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Hooks module provides DbtHooks and DbtRemoteHooks."""
"""Hooks module provides DbtHooks and DbtFSHooks."""
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

praise: Fantastic work in this commit.

Loading