Skip to content

Commit 113bc25

Browse files
authored
Merge branch 'master' into test-description-in-alerts-dbt-19
2 parents 1bd2d88 + 24abf04 commit 113bc25

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.8"
21+
python-version: "3.9"
2222

2323
- name: Install 'build' package
2424
run: pip install build

.github/workflows/run-precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/[email protected]
1515
with:
16-
python-version: "3.8"
16+
python-version: "3.9"
1717

1818
# mainly needed so mypy will have the dependencies it needs
1919
- name: Install elementary

.github/workflows/test-github-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Python
5252
uses: actions/setup-python@v4
5353
with:
54-
python-version: "3.8"
54+
python-version: "3.9"
5555

5656
- name: Install dbt
5757
run: pip install --pre

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ documentation = "https://docs.elementary-data.com"
1313
packages = [{include = "elementary"}]
1414

1515
[tool.poetry.dependencies]
16-
python = ">=3.8,<4"
16+
# matches the versions supported by dbt as of v1.9, which are probably due to the limits of numpy 1.26.x
17+
python = ">=3.9,<3.13"
1718
click = ">=7.0,<9.0"
1819
dbt-core = ">=0.20,<2.0.0"
1920
requests = ">=2.28.1,<3.0.0"

0 commit comments

Comments
 (0)