Skip to content

Commit

Permalink
updated to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Feb 3, 2025
1 parent 4847ee2 commit 25ffd38
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: |
3.8
3.9
3.10
3.11
3.12
- name: Install python dependencies
run: |
Expand All @@ -83,14 +83,14 @@ jobs:
- containers.intersystems.com/intersystems/iris-community:latest-em
- containers.intersystems.com/intersystems/iris-community:latest-preview
python:
- name: py38
version: "3.8"
- name: py39
version: "3.9"
- name: py310
version: "3.10"
- name: py311
version: "3.11"
- name: py312
version: "3.12"
runs-on: ubuntu-latest

steps:
Expand Down
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# install latest changes in dbt-core
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core
git+https://github.com/dbt-labs/dbt-common.git
git+https://github.com/dbt-labs/dbt-adapters.git
git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-tests-adapter
dbt-common @ git+https://github.com/dbt-labs/dbt-common.git
dbt-tests-adapter @ git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-tests-adapter
dbt-core @ git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core
dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-adapters

black>=24.3
bumpversion~=0.6.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ def _dbt_iris_version() -> str:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">3.7,<3.12",
python_requires=">3.7",
)
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
skipsdist = True
envlist = py3{8,9,10,11}{-iris,}
envlist = py3{9,10,11,12}{-iris,}

[testenv:{py37,py38,py39,py310}]
[testenv:{py39,py310,py311,py312}]
description = unit testing
skip_install = True
passenv = DBT_*,PYTEST_ADOPTS
Expand All @@ -12,7 +12,7 @@ deps =
-r requirements-dev.txt
-e.

[testenv:py3{8,9,10,11}-iris]
[testenv:py3{9,10,11,12}-iris]
description = adapter plugin functional testing
skip_install = true
passenv = DBT_*,IRIS_TEST_*,PYTEST_ADOPTS
Expand Down

0 comments on commit 25ffd38

Please sign in to comment.