Skip to content

Commit 2e91bdf

Browse files
committed
Upgrade to DBT 1.6.16. Upgrade poetry to 1.5.0.
1 parent afb7cca commit 2e91bdf

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

.github/workflows/poetry_lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Install poetry
3333
shell: bash
34-
run: pip install poetry==1.2.*
34+
run: pip install poetry==1.5.*
3535

3636
- name: Check poetry lock
3737
working-directory: "projects/adapter"

.github/workflows/python-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: Install poetry
6161
shell: bash
62-
run: pip install poetry=="1.4.2"
62+
run: pip install poetry=="1.5.0"
6363

6464
- name: Bump to publishing version
6565
working-directory: ${{ env.PACKAGE_DIR }}

.github/workflows/test_integration_adapter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
profile:
2828
- postgres
2929
dbt_version:
30-
- "1.5.9"
30+
- "1.6.16"
3131
python:
3232
- "3.8"
3333
- "3.9"

projects/adapter/pyproject.toml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
[tool.poetry]
22
name = "dbt-postgres-python"
3-
version = "1.5.9a1"
4-
# name = "fal"
5-
# version = "0.9.4a0"
3+
version = "1.6.16a0"
64
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."
75
readme = "README.md"
86
homepage = "https://github.com/kudryk/dbt-postgres-python"
@@ -19,19 +17,19 @@ classifiers = [
1917

2018
[tool.poetry.dependencies]
2119
python = "^3.8"
22-
dbt-core = ">=1.5,<=1.5.9"
23-
pandas = "^1.3.4"
24-
posthog = "^1.4.5"
25-
"backports.functools_lru_cache" = "^1.6.4"
20+
dbt-core = ">=1.6,<=1.6.16"
21+
pandas = "^1.5.3"
22+
posthog = "^1.4.9"
23+
"backports.functools_lru_cache" = "^1.6.6"
2624

2725
## Environment management related dependencies
2826
## TODO use fal-serverless instead
29-
platformdirs = "^2.5.2"
30-
virtualenv = "^20.16.2"
27+
platformdirs = "^2.6.2"
28+
virtualenv = "^20.21.1"
3129
dill = "0.3.7"
3230

3331
# dbt-fal
34-
sqlalchemy = "^1.4.41"
32+
sqlalchemy = "^1.4.52"
3533

3634
# Adapters
3735

@@ -58,7 +56,7 @@ s3fs = { version = ">=2022.8.2", optional = true }
5856
# fal cloud
5957
packaging = ">=23"
6058
fal = "^0.10.0"
61-
importlib-metadata = "^6.0.0"
59+
importlib-metadata = "^6.11.0"
6260

6361
[tool.poetry.extras]
6462
postgres = []
@@ -80,8 +78,8 @@ behave = "^1.2.6"
8078
mock = "^4.0.3"
8179
pytest-mock = "^3.7.0"
8280
matplotlib = "^3.5.2"
83-
requests = "^2.27.1"
81+
requests = "^2.32.3"
8482

8583
[build-system]
86-
requires = ["poetry-core>=1.0.0"]
84+
requires = ["poetry-core>=1.5.0"]
8785
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)