-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use MANIFEST.in to identify package data, allows recursive include (#…
…9021) (#9026) * changelog * use MANIFEST.in to identify package data (cherry picked from commit 839c720) Co-authored-by: Mike Alfare <[email protected]>
- Loading branch information
1 parent
66cb5a0
commit bebd6ca
Showing
3 changed files
with
9 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kind: Fixes | ||
body: Use MANIFEST.in to recursively include all jinja templates; fixes issue where | ||
some templates were not included in the distribution | ||
time: 2023-11-07T09:41:30.121733-05:00 | ||
custom: | ||
Author: mikealfare | ||
Issue: "9016" |
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 @@ | ||
recursive-include dbt/include *.sql *.yml |
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 |
---|---|---|
|
@@ -60,14 +60,7 @@ def _dbt_psycopg2_name(): | |
author_email="[email protected]", | ||
url="https://github.com/dbt-labs/dbt-core", | ||
packages=find_namespace_packages(include=["dbt", "dbt.*"]), | ||
package_data={ | ||
"dbt": [ | ||
"include/postgres/dbt_project.yml", | ||
"include/postgres/sample_profiles.yml", | ||
"include/postgres/macros/*.sql", | ||
"include/postgres/macros/**/*.sql", | ||
] | ||
}, | ||
include_package_data=True, | ||
install_requires=[ | ||
"dbt-core=={}".format(package_version), | ||
"{}~=2.8".format(DBT_PSYCOPG2_NAME), | ||
|