Closed guenp closed 1 week ago
This is a sibling of https://github.com/dbt-labs/dbt-core/issues/10230
Quick update: dbt-adapters
1.9.0 was just released!
As a workaround until dbt-core
1.9.0 is released we can just install dbt-core
on the latest pre-release tag, i.e.
pip install dbt-core==1.9.0b4 dbt-adapters dbt-duckdb
This gives
$ pip list | grep dbt
dbt-adapters 1.9.0
dbt-common 1.12.0
dbt-core 1.9.0b4
dbt-duckdb 1.9.0
dbt-extractor 0.5.1
dbt-semantic-interfaces 0.7.4
$ dbt --version
Core:
- installed: 1.9.0-b4
- latest: 1.8.8 - Ahead of latest version!
Plugins:
- duckdb: 1.9.0 - Up to date!
Is this a new bug?
Current Behavior
After running
pip install dbt-core dbt-adapters dbt-duckdb
:~
dbt-core
complains when the adapter version does not match thedbt-core
version (see line). Because we releaseddbt-duckdb
1.9.0 beforedbt-adapters
1.9.0 got released that's an error that shows up.~dbt-adapters
1.9.0 was just released! 🙌Another issue we're seeing is that
dbt-core
1.8.8 depends on ondbt-adapters
<1.7.1 (see line) but the latest version is 1.8.0 (which just came out last week) It seems like the solution to this would be fordbt-core
to release a new version 1.9.0Expected Behavior
No errors or version conflicts and should install the latest versions:
Steps To Reproduce
Run
pip install dbt-core dbt-adapters dbt-duckdb
in a new Python environment and runRelevant log output
Environment
Additional Context
N/A