forked from dbt-labs/dbt-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add both 'dbt' and 'dbt.*' to the namespace package search path - set zip_safe=False, because I think zipping breaks macros - Make CI tests use non-editable installs - make tox use editable mode for explicit-* so development is still possible without rebuilding tox - remove {toxinidir} stuff that breaks core installation - as of tox 1.6.1, requirements executes within toxinidir. - fix paths to account for installing things
- Loading branch information
Jacob Beck
committed
Oct 21, 2019
1 parent
6164733
commit f94a7a7
Showing
11 changed files
with
89 additions
and
77 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 |
---|---|---|
|
@@ -22,7 +22,7 @@ def read(fname): | |
author="Fishtown Analytics", | ||
author_email="[email protected]", | ||
url="https://github.com/fishtown-analytics/dbt", | ||
packages=find_namespace_packages(include=['dbt.*']), | ||
packages=find_namespace_packages(include=['dbt', 'dbt.*']), | ||
package_data={ | ||
'dbt': [ | ||
'include/index.html', | ||
|
@@ -60,5 +60,6 @@ def read(fname): | |
'logbook>=1.5,<1.6', | ||
'pytest-logbook>=1.2.0,<1.3', | ||
'typing-extensions>=3.7.4,<3.8', | ||
] | ||
], | ||
zip_safe=False, | ||
) |
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,5 @@ | ||
-e ./core | ||
-e ./plugins/postgres | ||
-e ./plugins/redshift | ||
-e ./plugins/snowflake | ||
-e ./plugins/bigquery |
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
author="Fishtown Analytics", | ||
author_email="[email protected]", | ||
url="https://github.com/fishtown-analytics/dbt", | ||
packages=find_namespace_packages(include=['dbt.*']), | ||
packages=find_namespace_packages(include=['dbt', 'dbt.*']), | ||
package_data={ | ||
'dbt': [ | ||
'include/bigquery/dbt_project.yml', | ||
|
@@ -31,5 +31,6 @@ | |
install_requires=[ | ||
'dbt-core=={}'.format(package_version), | ||
'google-cloud-bigquery>=1.0.0,<2', | ||
] | ||
], | ||
zip_safe=False, | ||
) |
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
author="Fishtown Analytics", | ||
author_email="[email protected]", | ||
url="https://github.com/fishtown-analytics/dbt", | ||
packages=find_namespace_packages(include=['dbt.*']), | ||
packages=find_namespace_packages(include=['dbt', 'dbt.*']), | ||
package_data={ | ||
'dbt': [ | ||
'include/postgres/dbt_project.yml', | ||
|
@@ -31,5 +31,6 @@ | |
install_requires=[ | ||
'dbt-core=={}'.format(package_version), | ||
'psycopg2>=2.7.5,<2.8', | ||
] | ||
], | ||
zip_safe=False, | ||
) |
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
author="Fishtown Analytics", | ||
author_email="[email protected]", | ||
url="https://github.com/fishtown-analytics/dbt", | ||
packages=find_namespace_packages(include=['dbt.*']), | ||
packages=find_namespace_packages(include=['dbt', 'dbt.*']), | ||
package_data={ | ||
'dbt': [ | ||
'include/redshift/dbt_project.yml', | ||
|
@@ -34,5 +34,6 @@ | |
'boto3>=1.6.23,<1.10.0', | ||
'botocore>=1.9.23,<1.13.0', | ||
'psycopg2>=2.7.5,<2.8', | ||
] | ||
], | ||
zip_safe=False, | ||
) |
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
author="Fishtown Analytics", | ||
author_email="[email protected]", | ||
url="https://github.com/fishtown-analytics/dbt", | ||
packages=find_namespace_packages(include=['dbt.*']), | ||
packages=find_namespace_packages(include=['dbt', 'dbt.*']), | ||
package_data={ | ||
'dbt': [ | ||
'include/snowflake/dbt_project.yml', | ||
|
@@ -31,5 +31,6 @@ | |
install_requires=[ | ||
'dbt-core=={}'.format(package_version), | ||
'snowflake-connector-python>=1.6.12,<2.1', | ||
] | ||
], | ||
zip_safe=False, | ||
) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
-e ./core | ||
-e ./plugins/postgres | ||
-e ./plugins/redshift | ||
-e ./plugins/snowflake | ||
-e ./plugins/bigquery | ||
./core | ||
./plugins/postgres | ||
./plugins/redshift | ||
./plugins/snowflake | ||
./plugins/bigquery |
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
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