From 991982c6a004e700e4d2cbfe0cf03498a8d20656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Wed, 28 Dec 2022 15:00:11 +0100 Subject: [PATCH] breaking: Drop support for Python 3.8 --- .github/workflows/test.yaml | 2 +- README.md | 2 +- pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3c529d9..ce4fbc8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11.1" ] + python-version: [ "3.9", "3.10", "3.11.1" ] services: redis: image: redis:6.2.5-alpine diff --git a/README.md b/README.md index 360f7c1..7f4a18c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ PyPI test status coverage -python version +python version # Self limiters diff --git a/pyproject.toml b/pyproject.toml index 2189e8a..96f05d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "self-limiters" description = "Distributed async rate limiters, using Redis" authors = [{ name = "Sondre Lillebø Gundersen", email = "sondrelg@live.no" }] readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = { file = "LICENSE", type = 'BSD-3' } homepage = "https://github.com/sondrelg/self-limiters" repository = "https://github.com/sondrelg/self-limiters" @@ -27,7 +27,6 @@ classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Rust", 'Programming Language :: Python', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',