Skip to content

Commit

Permalink
Update duckdb version
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Oosterop committed Oct 16, 2023
1 parent b98361d commit 5656fe0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
<!-- insertion marker -->
## [Unreleased]

## [0.2.0] 2023-09-26
- Use duckdb version >=0.9.1

### Changed

## [0.0.12] 2023-09-26

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ disallow_incomplete_defs = true

[tool.poetry]
name = "ternyxmimosa"
version = "0.0.12"
version = "0.2.0"
description = "A minimal modern data stack with working data pipelines in a single Docker container."
authors = ["Erik Oosterop <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions src/mimosa/pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def run_reporting_pipeline(self):
logger.debug("Starting to obtain a dbt venv.")
venv = dlt.dbt.get_venv(pipeline)
venv.run_module(
"pip", "install", "duckdb==0.8.1"
) # TODO: this does not always need to be fixed (20230926)
"pip", "install", "duckdb>=0.9.1"
) # TODO: this does not always need to be a fixed version (20230926)

# get runner, optionally pass the venv
logger.debug("Getting the path for dbt transformations.")
Expand Down

0 comments on commit 5656fe0

Please sign in to comment.