From f6e2d0bcc39ef38e4e9f93a6b42fdbee4f4d679e Mon Sep 17 00:00:00 2001 From: Ivan Shcheklein Date: Mon, 5 Feb 2024 11:17:23 -0800 Subject: [PATCH] chore(deps): drop 3.8 support --- .github/workflows/check-test-release.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-test-release.yml b/.github/workflows/check-test-release.yml index 4b016146..a6f857c6 100644 --- a/.github/workflows/check-test-release.yml +++ b/.github/workflows/check-test-release.yml @@ -37,7 +37,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python: ["3.8", "3.9", "3.10", "3.11"] + python: ["3.9", "3.10", "3.11"] fail-fast: false timeout-minutes: 10 steps: diff --git a/setup.py b/setup.py index 4806c638..37871535 100644 --- a/setup.py +++ b/setup.py @@ -48,11 +48,10 @@ "install_requires": install_requires, "extras_require": {"tests": tests}, "keywords": "git repo repository artifact registry developer-tools collaboration", - "python_requires": ">=3.8", + "python_requires": ">=3.9", "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",