From d59d2033afd47623aaab21d70459206e50b1788f Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sat, 12 Apr 2025 17:35:56 +0000 Subject: [PATCH 1/2] Update the unit and integration tests to no longer test against Python 3.8 as DBT does not support this version. --- .github/workflows/integration-tests-sqlserver.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests-sqlserver.yml b/.github/workflows/integration-tests-sqlserver.yml index f821d1b0..5c7694a6 100644 --- a/.github/workflows/integration-tests-sqlserver.yml +++ b/.github/workflows/integration-tests-sqlserver.yml @@ -18,7 +18,7 @@ jobs: name: Regular strategy: matrix: - python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python_version: ["3.9", "3.10", "3.11", "3.12"] msodbc_version: ["17", "18"] sqlserver_version: ["2017", "2019", "2022"] collation: ["SQL_Latin1_General_CP1_CS_AS", "SQL_Latin1_General_CP1_CI_AS"] diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a04ecc1b..5acae556 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -18,7 +18,7 @@ jobs: name: Unit tests strategy: matrix: - python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python_version: ["3.9", "3.10", "3.11", "3.12"] runs-on: ubuntu-latest permissions: contents: read From 2de32467fe2737738380ebc73e7afc6458dfe15c Mon Sep 17 00:00:00 2001 From: Benjamin Date: Fri, 9 May 2025 11:32:25 +0000 Subject: [PATCH 2/2] Update to remove building of docker images using python versions no longer supported by the project. --- .github/workflows/publish-docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index 4a312ea3..63b1f5c4 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -12,7 +12,7 @@ jobs: publish-docker-client: strategy: matrix: - python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python_version: ["3.9", "3.10", "3.11", "3.12"] docker_target: ["msodbc17", "msodbc18"] runs-on: ubuntu-latest permissions: