Skip to content

Commit f439527

Browse files
committed
Dropped Python 3.8 from test matrix.
1 parent 662b90d commit f439527

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
python-version:
18-
- "3.8"
1918
- "3.9"
2019
- "3.10"
2120
- "3.11"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There are two available implementations:
1919

2020
Both layers support a single-server and sharded configurations.
2121

22-
`channels_redis` is tested against Python 3.8 to 3.13, `redis-py` versions 4.6,
22+
`channels_redis` is tested against Python 3.9 to 3.13, `redis-py` versions 4.6,
2323
5.0, and the development branch, and Channels versions 3, 4 and the development
2424
branch there.
2525

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
zip_safe=False,
3030
packages=find_packages(exclude=["tests"]),
3131
include_package_data=True,
32-
python_requires=">=3.8",
32+
python_requires=">=3.9",
3333
install_requires=[
3434
"redis>=4.6",
3535
"msgpack~=1.0",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311,312,313}-ch{30,40,main}-redis50
3+
py{39,310,311,312,313}-ch{30,40,main}-redis50
44
py311-chmain-redis{45,46,50,main}
55
qa
66

0 commit comments

Comments
 (0)