Skip to content

Commit

Permalink
Add conda install instructions (#54)
Browse files Browse the repository at this point in the history
* Add conda install instructions

* Add note to releasing
  • Loading branch information
binste authored Mar 21, 2024
1 parent f222fd5 commit d786352
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ def model(stores):
return stores.filter(stores["country"] == "USA")
```

You can install `dbt-ibis` via pip:
You can install `dbt-ibis` via pip or conda:
```bash
pip install dbt-ibis
# or
conda install -c conda-forge dbt-ibis
```

In addition, you'll need to install the relevant [`Ibis` backend](https://ibis-project.org/install) for your database.

You can read about the advantages of combining dbt and Ibis in [this blog post](https://ibis-project.org/posts/dbt-ibis/).
Expand Down
10 changes: 7 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,18 @@

9. Add release in https://github.com/binste/dbt-ibis/releases and select the version tag

10. Update version to e.g. 0.3.0dev in `dbt_ibis/__init__.py` in new branch
10. Double-check that a conda-forge pull request is generated from the updated
pip package by the conda-forge bot (may take up to ~an hour):
https://github.com/conda-forge/dbt-ibis-feedstock/pulls

11. Update version to e.g. 0.3.0dev in `dbt_ibis/__init__.py` in new branch

git switch -c maint_0.3.0dev

11. Commit change and push:
12. Commit change and push:

git add . -u
git commit -m "MAINT: Bump version to 0.3.0dev"
git push

12. Merge maintenance branch into main
13. Merge maintenance branch into main
5 changes: 4 additions & 1 deletion doc/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ Supported dbt adapters:
* Oracle

## Installation
You can install `dbt-ibis` via pip:
You can install `dbt-ibis` via pip or conda:
```bash
pip install dbt-ibis
# or
conda install -c conda-forge dbt-ibis
```

In addition, you'll need to install the relevant [`ibis` backend](https://ibis-project.org/install) for your database.

## Why dbt and Ibis go great together
Expand Down

0 comments on commit d786352

Please sign in to comment.