From c8e56f12fe43e4a91511270acbc5efb4d99b61a0 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 --- .github/workflows/ci.yml | 5 ++++- setup.py | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) 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", )