Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Update version pins to enable dbt-core 1.9 compatability. Add CI/CD tests #89

Merged
merged 7 commits into from
Oct 10, 2024
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
python-version: [3.11]
poetry-version: [1.4.2]
dbt-version: [1.6.0, 1.7.0, 1.8.0]
dbt-version: [1.6.0, 1.7.0, 1.8.0, 1.9.0b2]

runs-on: ubuntu-latest

Expand All @@ -36,7 +36,7 @@ jobs:

- name: Install dbt-core
shell: bash
run: python -m poetry add dbt-duckdb~=${{ matrix.dbt-version }}
run: python -m poetry add dbt-core~=${{ matrix.dbt-version }} --allow-prereleases

- name: Test
run: |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version_files = ["pyproject.toml:^version"]

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
dbt-core = ">=1.6.0,<1.9.0"
dbt-core = ">=1.6.0,<1.10.0"
requests = "^2.31.0"
google-cloud-storage = "^2.13.0"
boto3 = "^1.28.84"
Expand All @@ -25,7 +25,7 @@ types-networkx = "^3.2.1.20240313"
ruff = "^0.3.0"
pytest = "^7.4.0"
isort = "^5.12.0"
dbt-duckdb = ">=1.6.0,<1.9.0"
dbt-duckdb = ">=1.6.0,<1.10.0"
duckdb = ">=0.8.0"
pre-commit = "^3.6.0"
mypy = "^1.8.0"
Expand Down
Loading