Skip to content

Commit a7cd109

Browse files
authored
Update version documentation and requirements (#37)
1 parent 1f75eeb commit a7cd109

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,15 @@ creating, updating, and deleting
2626

2727
## Installation
2828

29-
```shell
30-
pip install dbt-invoke
31-
```
32-
29+
- If you are using dbt-core version 1.5.0 or later:
30+
```shell
31+
pip install dbt-invoke
32+
```
33+
- If you are using a dbt-core version earlier than 1.5.0:
34+
```shell
35+
pip install dbt-invoke~=0.2
36+
```
37+
3338

3439
## Usage
3540

@@ -215,7 +220,4 @@ dbt-invoke properties.delete <options>
215220
ephemeral materializations.
216221
- This may be partially remedied by increasing the value of the `--threads`
217222
option in `dbt-invoke properties.update`.
218-
- dbt-invoke is tested against:
219-
- dbt 0.18, 0.19, 1.1, and 1.4
220-
- macos-latest, windows-latest, ubuntu-latest
221223
- dbt-invoke has not been tested across different types of data warehouses.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
url='https://github.com/Dashlane/dbt-invoke',
2323
packages=find_packages(),
2424
install_requires=['invoke>=1.4.1', 'PyYAML>=5.1', 'ruamel.yaml>=0.17.12'],
25-
python_requires='>=3.6.0',
25+
python_requires='>=3.7.0',
2626
entry_points={
2727
'console_scripts': ["dbt-invoke = dbt_invoke.main:program.run"]
2828
},

0 commit comments

Comments
 (0)