Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

- name: Install 'build' package
run: pip install build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.8"
python-version: "3.9"

# mainly needed so mypy will have the dependencies it needs
- name: Install elementary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-github-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

- name: Install dbt
run: pip install --pre
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ documentation = "https://docs.elementary-data.com"
packages = [{include = "elementary"}]

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