Skip to content

Commit 5b59e7c

Browse files
committed
build: Enable Python 3.11 in test matrix
Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
1 parent 9264ffc commit 5b59e7c

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Run regular TUF tests on each OS/Python combination, plus special tests
1212
# (sslib master) and linters on Linux/Python3.x only.
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10"]
14+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
toxenv: [py]
1717
include:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.8",
3838
"Programming Language :: Python :: 3.9",
3939
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
4041
"Programming Language :: Python :: Implementation :: CPython",
4142
"Topic :: Security",
4243
"Topic :: Software Development",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# 1. Use this script to create a pinned requirements file for each Python
2727
# version
2828
# ```
29-
# for v in 3.7 3.8 3.9; do
29+
# for v in 3.7 3.8 3.9 3.10 3.11; do
3030
# mkvirtualenv tuf-env-${v} -p python${v};
3131
# python3 -m pip install pip-tools;
3232
# pip-compile --no-header -o requirements-${v}.txt requirements.txt;

0 commit comments

Comments
 (0)