From 6d097eead454faa49601d4426c87ec3213068f92 Mon Sep 17 00:00:00 2001 From: Colin Rogers <111200756+colin-rogers-dbt@users.noreply.github.com> Date: Wed, 24 Apr 2024 22:30:39 -0700 Subject: [PATCH] Support py3.12 (#185) --- .changes/unreleased/Dependencies-20240424-140142.yaml | 6 ++++++ .github/workflows/unit-tests.yml | 2 +- dbt-tests-adapter/pyproject.toml | 1 + pyproject.toml | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20240424-140142.yaml diff --git a/.changes/unreleased/Dependencies-20240424-140142.yaml b/.changes/unreleased/Dependencies-20240424-140142.yaml new file mode 100644 index 00000000..c263e3c2 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240424-140142.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: add support for py3.12 +time: 2024-04-24T14:01:42.576383-07:00 +custom: + Author: colin-rogers-dbt + Issue: "57" diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 26ff4aaa..7d720655 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: Check out repository diff --git a/dbt-tests-adapter/pyproject.toml b/dbt-tests-adapter/pyproject.toml index c5df5998..35722b7b 100644 --- a/dbt-tests-adapter/pyproject.toml +++ b/dbt-tests-adapter/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] dependencies = [ # TODO: remove `dbt-core` dependency diff --git a/pyproject.toml b/pyproject.toml index b08a8159..a4b011a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] dependencies = [ "dbt-common<2.0",