diff --git a/README.md b/README.md index dbaeda5..071ee53 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,15 @@ creating, updating, and deleting ## Installation -```shell -pip install dbt-invoke -``` - +- If you are using dbt-core version 1.5.0 or later: + ```shell + pip install dbt-invoke + ``` +- If you are using a dbt-core version earlier than 1.5.0: + ```shell + pip install dbt-invoke~=0.2 + ``` + ## Usage @@ -215,7 +220,4 @@ dbt-invoke properties.delete ephemeral materializations. - This may be partially remedied by increasing the value of the `--threads` option in `dbt-invoke properties.update`. -- dbt-invoke is tested against: - - dbt 1.5 and 1.6 - - macos-latest, windows-latest, ubuntu-latest - dbt-invoke has not been tested across different types of data warehouses. diff --git a/setup.py b/setup.py index aaaf1b2..c287007 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ url='https://github.com/Dashlane/dbt-invoke', packages=find_packages(), install_requires=['invoke>=1.4.1', 'PyYAML>=5.1', 'ruamel.yaml>=0.17.12'], - python_requires='>=3.6.0', + python_requires='>=3.7.0', entry_points={ 'console_scripts': ["dbt-invoke = dbt_invoke.main:program.run"] },