Skip to content

Commit 0a29168

Browse files
authored
Merge pull request #41 from kudryk/v1.7.17
V1.7.17
2 parents b8cbaa3 + 444865f commit 0a29168

File tree

5 files changed

+15
-76
lines changed

5 files changed

+15
-76
lines changed

.github/actions/setup-local-fal/action.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/test_integration_adapter.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
with:
4444
path: "fal"
4545

46+
- uses: actions/setup-python@v5
47+
with:
48+
python-version: ${{ matrix.python }}
49+
4650
- name: Start Docker database
4751
working-directory: fal/projects/adapter/integration_tests
4852
if: contains(fromJSON('["postgres"]'), matrix.profile)
@@ -76,9 +80,9 @@ jobs:
7680
pip install $ADAPTER_PACKAGE -e $DBT_FAL_PACKAGE
7781
popd
7882
79-
- name: Setup behave
83+
- name: Install requirements
8084
working-directory: fal/projects/adapter/integration_tests
81-
run: pip install behave
85+
run: pip install -r requirements-dev.txt
8286

8387
- name: Run tests
8488
id: test_run
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
behave
2+
PyYAML

projects/adapter/poetry.lock

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/adapter/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dbt-postgres-python"
3-
version = "1.7.16a1"
3+
version = "1.7.17a1"
44
description = "Run python scripts from any dbt project. This project is based on the project https://github.com/fal-ai/fal initially authored by FAL.AI."
55
readme = "README.md"
66
homepage = "https://github.com/kudryk/dbt-postgres-python"
@@ -19,6 +19,7 @@ classifiers = [
1919
python = "^3.8"
2020
dbt-core = ">=1.7,<=1.7.16"
2121
pandas = "^1.5.3"
22+
numpy = "<2"
2223

2324
## Environment management related dependencies
2425
virtualenv = "^20.21.1"

0 commit comments

Comments
 (0)