From c2902be33b496cc5d16b7cbad96b63a479151b01 Mon Sep 17 00:00:00 2001 From: popcorny Date: Tue, 7 May 2024 18:00:23 +0800 Subject: [PATCH] Remove dbt-core dependency Signed-off-by: popcorny --- .github/workflows/integration-tests-sqlmesh.yaml | 7 +++---- .github/workflows/integration-tests.yaml | 2 -- .github/workflows/tests.yaml | 1 + setup.py | 1 - 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration-tests-sqlmesh.yaml b/.github/workflows/integration-tests-sqlmesh.yaml index a95208bb..a81107e8 100644 --- a/.github/workflows/integration-tests-sqlmesh.yaml +++ b/.github/workflows/integration-tests-sqlmesh.yaml @@ -4,13 +4,11 @@ on: push: branches: - main - paths: - - "recce/**" + # paths: + # - "recce/**" pull_request: branches: - main - paths: - - "recce/**" jobs: build: @@ -23,6 +21,7 @@ jobs: with: python-version: 3.11 cache: "pip" # caching pip dependencies + cache-dependency-path: setup.py - run: | python -m pip install --upgrade pip pip install sqlmesh diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index e7328af9..74b4a06d 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -9,8 +9,6 @@ on: pull_request: branches: - main - # paths: - # - "recce/**" jobs: build: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index dc74d9d1..ef11fd69 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -23,6 +23,7 @@ jobs: with: python-version: 3.11 cache: "pip" # caching pip dependencies + cache-dependency-path: setup.py - name: Install flake8 run: pip install flake8 diff --git a/setup.py b/setup.py index 273815aa..33b36193 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ def _get_version(): install_requires=[ 'ruamel.yaml<0.18.0', 'click>=7.1', - 'dbt-core>=1.5', 'portalocker', 'fastapi', 'itsdangerous',