From 5fb9bf85d4d48ed89768aaadb13ba06b88d9baff Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:48:31 -0400 Subject: [PATCH] Drop support for Python 3.8 (#741) --- .pre-commit-config.yaml | 3 +-- CONTRIBUTING.md | 2 +- dbt-athena-community/pyproject.toml | 3 +-- dbt-athena/pyproject.toml | 3 +-- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 73ea3a2a..2122aab0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -54,11 +54,10 @@ repos: - id: black args: - --line-length=120 - - --target-version=py38 - --target-version=py39 - --target-version=py310 - --target-version=py311 - # - --target-version=py312 + # - --target-version=py312 # not supported in 23.1.0 - repo: https://github.com/pycqa/flake8 rev: 6.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 187e4f0f..e73dabdc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ## Requirements -* Python>=3.8 - [docs](https://www.python.org/) +* Python>=3.9 - [docs](https://www.python.org/) * Hatch - [docs](https://hatch.pypa.io/dev/) ## Getting started diff --git a/dbt-athena-community/pyproject.toml b/dbt-athena-community/pyproject.toml index edcead41..03287187 100644 --- a/dbt-athena-community/pyproject.toml +++ b/dbt-athena-community/pyproject.toml @@ -3,7 +3,7 @@ name = "dbt-athena-community" description = "The athena adapter plugin for dbt (data build tool)" readme = "../README.md" keywords = ["dbt", "adapter", "adapters", "database", "elt", "dbt-core", "dbt Core", "dbt Cloud", "dbt Labs", "athena"] -requires-python = ">=3.8.0" +requires-python = ">=3.9.0" authors = [ { name = "dbt Labs", email = "info@dbtlabs.com" }, ] @@ -16,7 +16,6 @@ classifiers = [ "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/dbt-athena/pyproject.toml b/dbt-athena/pyproject.toml index 9c1cd070..4832e320 100644 --- a/dbt-athena/pyproject.toml +++ b/dbt-athena/pyproject.toml @@ -4,7 +4,7 @@ name = "dbt-athena" description = "The athena adapter plugin for dbt (data build tool)" readme = "../README.md" keywords = ["dbt", "adapter", "adapters", "database", "elt", "dbt-core", "dbt Core", "dbt Cloud", "dbt Labs", "athena"] -requires-python = ">=3.8.0" +requires-python = ">=3.9.0" authors = [ { name = "dbt Labs", email = "info@dbtlabs.com" }, ] @@ -17,7 +17,6 @@ classifiers = [ "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",