From 25ffd38d4b30f59e02e295e88cb125d50f3e254e Mon Sep 17 00:00:00 2001 From: Dmitry Maslennikov Date: Mon, 3 Feb 2025 22:05:31 +1100 Subject: [PATCH] updated to 3.12 --- .github/workflows/main.yml | 6 +++--- requirements-dev.txt | 8 ++++---- setup.py | 2 +- tox.ini | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fde9dc5..8fb2661 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: | @@ -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: diff --git a/requirements-dev.txt b/requirements-dev.txt index 1d569f2..9c7bd2b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -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 diff --git a/setup.py b/setup.py index 34aa150..ee54a0e 100644 --- a/setup.py +++ b/setup.py @@ -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", ) diff --git a/tox.ini b/tox.ini index 7488aba..c4166e5 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -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