From b7d4dbafbfb2ff401fdfc8d86026c169e47e1899 Mon Sep 17 00:00:00 2001 From: Yu Ishikawa Date: Wed, 15 Jan 2025 18:04:33 +0900 Subject: [PATCH] Don't support python 3.8 (#142) Signed-off-by: Yu Ishikawa --- .github/workflows/publish.yml | 2 +- .github/workflows/test-publish.yml | 2 +- .github/workflows/test.yml | 2 +- pyproject.toml | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2571a73..f6ea7a7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.9", "3.10", "3.11", "3.12" ] defaults: run: shell: bash diff --git a/.github/workflows/test-publish.yml b/.github/workflows/test-publish.yml index 02054e8..04e0278 100644 --- a/.github/workflows/test-publish.yml +++ b/.github/workflows/test-publish.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: ["3.9", "3.10", "3.11", "3.12" ] defaults: run: shell: bash diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index afb130b..bfd5e5d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] fail-fast: false defaults: diff --git a/pyproject.toml b/pyproject.toml index fdbef53..ec50942 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "dbt-artifacts-parser" authors = [{name = "yu-iskw"}] readme = "README.md" license = {file = "LICENSE"} -requires-python = ">=3.8.0" +requires-python = ">=3.9.0" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Information Technology", @@ -19,7 +19,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",