From 1056a075eca41354f4b32d03aa371c4032527aef Mon Sep 17 00:00:00 2001 From: Damian Owsianny Date: Fri, 19 Jan 2024 11:01:20 +0100 Subject: [PATCH] Add tests against Python 3.12 --- .changes/unreleased/Under the Hood-20240122-140131.yaml | 7 +++++++ .github/workflows/ci.yml | 5 ++++- setup.py | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Under the Hood-20240122-140131.yaml diff --git a/.changes/unreleased/Under the Hood-20240122-140131.yaml b/.changes/unreleased/Under the Hood-20240122-140131.yaml new file mode 100644 index 00000000..10252553 --- /dev/null +++ b/.changes/unreleased/Under the Hood-20240122-140131.yaml @@ -0,0 +1,7 @@ +kind: Under the Hood +body: Add tests against Python 3.12 +time: 2024-01-22T14:01:31.044633+01:00 +custom: + Author: damian3031 + Issue: "" + PR: "383" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dacb801..af58440e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,14 +41,17 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" isStarburstBranch: - ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.head.repo.full_name, 'starburstdata')) || github.event_name != 'pull_request' }} exclude: - engine: "starburst_galaxy" - python: "3.10" + python: "3.12" isStarburstBranch: false - engine: "starburst_galaxy" python: "3.11" + - engine: "starburst_galaxy" + python: "3.10" - engine: "starburst_galaxy" python: "3.9" diff --git a/setup.py b/setup.py index 6fb695cb..b744008a 100644 --- a/setup.py +++ b/setup.py @@ -99,6 +99,7 @@ def _get_dbt_core_version(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], python_requires=">=3.8", )