Skip to content

Commit 7a2d86d

Browse files
authored
Officially support Python 3.11 (#68)
1 parent 9278c66 commit 7a2d86d

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
- "3.8"
5454
- "3.9"
5555
- "3.10"
56+
- "3.11"
5657

5758
env:
5859
REDIS_HOST: 127.0.0.1

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.8",
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
28+
"Programming Language :: Python :: 3.11",
2829
]
2930
packages = [
3031
{ include = "sherlock" },

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ envlist =
33
py37,
44
py38,
55
py39,
6-
py310
6+
py310,
7+
py311
78
isolated_build = true
89

910
[testenv]
@@ -69,6 +70,8 @@ python =
6970
3.8: py38
7071
3.9: py39
7172
3.10: py310
73+
3.11: py311
74+
fail_on_no_env = True
7275

7376
[flake8]
7477
max-line-length = 88

0 commit comments

Comments
 (0)