Skip to content

Commit 4104da6

Browse files
authored
Merge pull request #51 from cclauss/drop-python3.8
Drop support for CPython 3.8 and PyPy3.8
1 parent f04baba commit 4104da6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
max-parallel: 15
2727
matrix:
28-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
28+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
2929
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
3030
fail-fast: false
3131
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ python -m pytest
2828

2929
### Requirements
3030

31-
libvalkey-py requires **Python 3.8+**.
31+
libvalkey-py requires **Python 3.9+**.
3232

3333
Make sure Python development headers are available when installing libvalkey-py.
3434
On Ubuntu/Debian systems, install them with `apt-get install python3-dev`.

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def get_libraries():
8888
packages=["libvalkey"],
8989
package_data={"libvalkey": ["libvalkey.pyi", "py.typed"]},
9090
ext_modules=[ext],
91-
python_requires=">=3.8",
91+
python_requires=">=3.9",
9292
project_urls={
9393
"Changes": "https://github.com/valkey-io/libvalkey-py/releases",
9494
"Issue tracker": "https://github.com/valkey-io/libvalkey-py/issues",
@@ -102,7 +102,6 @@ def get_libraries():
102102
"Programming Language :: C",
103103
"Programming Language :: Python :: 3",
104104
"Programming Language :: Python :: 3 :: Only",
105-
"Programming Language :: Python :: 3.8",
106105
"Programming Language :: Python :: 3.9",
107106
"Programming Language :: Python :: 3.10",
108107
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)