Skip to content

Commit

Permalink
Chore: consolidate make install-* (#3874)
Browse files Browse the repository at this point in the history
  • Loading branch information
erindru authored Feb 20, 2025
1 parent 503d13f commit a94b11f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jobs:
name: Install ODBC
command: sudo apt-get install unixodbc-dev
- run:
name: Install SQLMesh and dbt adapter dependencies
command: make install-cicd-test
name: Install SQLMesh dev dependencies
command: make install-dev
- run:
name: Fix Git URL override
command: git config --global --unset url."ssh://[email protected]".insteadOf
Expand Down
8 changes: 1 addition & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
.PHONY: docs

install-dev:
pip3 install -e ".[dev,web,slack,dlt]"

install-cicd-test:
pip3 install -e ".[dev,web,slack,cicdtest,dlt]" ./examples/custom_materializations
pip3 install -e ".[dev,web,slack,dlt]" ./examples/custom_materializations

install-doc:
pip3 install -r ./docs/requirements.txt

install-engine-test:
pip3 install -e ".[dev,web,slack,mysql,postgres,databricks,redshift,bigquery,snowflake,trino,mssql,clickhouse,athena]"

install-pre-commit:
pre-commit install

Expand Down
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,17 @@
"beautifulsoup4",
"clickhouse-connect",
"cryptography",
"custom-materializations",
"databricks-sql-connector",
"dbt-bigquery",
"dbt-core",
"dbt-duckdb>=1.7.1",
"dbt-snowflake",
"dbt-athena-community",
"dbt-clickhouse",
"dbt-databricks",
"dbt-redshift",
"dbt-sqlserver>=1.7.0",
"dbt-trino",
"Faker",
"google-auth",
"google-cloud-bigquery",
Expand Down Expand Up @@ -105,14 +110,6 @@
"types-requests==2.28.8",
"typing-extensions",
],
"cicdtest": [
"dbt-athena-community",
"dbt-clickhouse",
"dbt-databricks",
"dbt-redshift",
"dbt-sqlserver>=1.7.0",
"dbt-trino",
],
"dbt": [
"dbt-core<2",
],
Expand Down

0 comments on commit a94b11f

Please sign in to comment.