Skip to content

Commit

Permalink
Raise error on pip install dbt (#4133)
Browse files Browse the repository at this point in the history
* 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>

automatic commit by git-black, original commits:
  dd84f9a
  • Loading branch information
jtcohen6 authored and iknox-fa committed Feb 8, 2022
1 parent 914bdf0 commit c68d9a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()


Expand All @@ -35,7 +35,7 @@
version=package_version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
author="dbt Labs",
author_email="info@dbtlabs.com",
url="https://github.com/dbt-labs/dbt-core",
Expand Down

0 comments on commit c68d9a9

Please sign in to comment.