From 67410e9c37743f132a059261f69af3e23622804e Mon Sep 17 00:00:00 2001 From: Elliot <3186037+elliot-100@users.noreply.github.com> Date: Sat, 20 Apr 2024 11:50:52 +0100 Subject: [PATCH] ci: add Python 3.12 to version matrix --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 6ad137a..04eb015 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: Check out repository diff --git a/pyproject.toml b/pyproject.toml index bdd60f9..debe69c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ pytest = "^8.1.1" [tool.black] line-length = 88 -target-version = ['py38', 'py39', 'py310', 'py311'] +target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] [tool.isort] profile = "black"