Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit f11d94d

Browse files
authored
Support Python 3.10 (#78)
1 parent ed15621 commit f11d94d

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/test-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9"]
17+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
1818

1919
services:
2020
zookeeper:
@@ -66,4 +66,4 @@ jobs:
6666
- name: "Run tests"
6767
run: "scripts/test"
6868
- name: "Enforce coverage"
69-
run: "scripts/coverage"
69+
run: "scripts/coverage"

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,8 @@ def get_packages(package):
6161
"Programming Language :: Python :: 3",
6262
"Programming Language :: Python :: 3.7",
6363
"Programming Language :: Python :: 3.8",
64+
"Programming Language :: Python :: 3.9",
65+
"Programming Language :: Python :: 3.10",
66+
"Programming Language :: Python :: 3.11",
6467
],
6568
)

0 commit comments

Comments
 (0)