Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add conda install instructions #54

Merged
merged 2 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading