Skip to content

Commit 991982c

Browse files
committed
breaking: Drop support for Python 3.8
1 parent c54833e commit 991982c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python-version: [ "3.8", "3.9", "3.10", "3.11.1" ]
31+
python-version: [ "3.9", "3.10", "3.11.1" ]
3232
services:
3333
redis:
3434
image: redis:6.2.5-alpine

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<a href="https://pypi.org/project/self-limiters/"><img alt="PyPI" src="https://img.shields.io/pypi/v/self-limiters.svg"></a>
22
<a href="https://github.com/sondrelg/self-limiters/actions/workflows/publish.yml"><img alt="test status" src="https://github.com/sondrelg/self-limiters/actions/workflows/publish.yml/badge.svg"></a>
33
<a href="https://codecov.io/gh/sondrelg/self-limiters/"><img alt="coverage" src="https://codecov.io/gh/sondrelg/self-limiters/branch/main/graph/badge.svg?token=Q4YJPOFC1F"></a>
4-
<a href="https://codecov.io/gh/sondrelg/self-limiters/"><img alt="python version" src="https://img.shields.io/badge/python-3.8%2B-blue"></a>
4+
<a href="https://codecov.io/gh/sondrelg/self-limiters/"><img alt="python version" src="https://img.shields.io/badge/python-3.9%2B-blue"></a>
55

66
# Self limiters
77

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "self-limiters"
33
description = "Distributed async rate limiters, using Redis"
44
authors = [{ name = "Sondre Lillebø Gundersen", email = "[email protected]" }]
55
readme = "README.md"
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.9"
77
license = { file = "LICENSE", type = 'BSD-3' }
88
homepage = "https://github.com/sondrelg/self-limiters"
99
repository = "https://github.com/sondrelg/self-limiters"
@@ -27,7 +27,6 @@ classifiers = [
2727
"Development Status :: 4 - Beta",
2828
"Programming Language :: Rust",
2929
'Programming Language :: Python',
30-
'Programming Language :: Python :: 3.8',
3130
'Programming Language :: Python :: 3.9',
3231
'Programming Language :: Python :: 3.10',
3332
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)