Skip to content

Commit

Permalink
fix syntax for require-dbt-version
Browse files Browse the repository at this point in the history
Added missing quotes and the patch version.

Fixed these two errors:
- `'float' object is not iterable`
- `"1.5" is not a valid semantic version.`
  • Loading branch information
davidculley authored Sep 26, 2024
1 parent 2759f83 commit c0b1ca7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ In the following example, the project will only run with dbt v1.5:
<File name='dbt_project.yml'>

```yml
require-dbt-version: 1.5
require-dbt-version: "1.5.0"
```

</File>
Expand Down

0 comments on commit c0b1ca7

Please sign in to comment.