From 848fe386a3ee45eb786c5c55da13ee1a6e4d8ba6 Mon Sep 17 00:00:00 2001 From: Jerry Pussinen Date: Wed, 12 Apr 2023 09:22:10 +0300 Subject: [PATCH] Add 3.11 support --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 ++ pyproject.toml | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c2dc314..fd7b52c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 - uses: ./.github/actions/python-poetry-env diff --git a/CHANGELOG.md b/CHANGELOG.md index 81b3991..49eaa3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Introduce Ruff - Fixed usage of [deprecated pytest API](https://docs.pytest.org/en/latest/deprecations.html#configuring-hook-specs-impls-using-markers) +### Added +- Python 3.11 to CI test matrix ## [0.8.0] - 2022-04-22 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 08c3250..4887668 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed", ]