From 0ea6cec7180bafedc1f39b777fcf4ce9ffe79e1b Mon Sep 17 00:00:00 2001 From: Antti Soininen Date: Thu, 25 Jan 2024 17:07:56 +0100 Subject: [PATCH] Lift Python version upper limit Re spine-tools/Spine-Toolbox#2522 --- .github/workflows/run_unit_tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 37628b76..3157fecc 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-22.04] - python-version: [3.8, 3.9, "3.10", 3.11] + python-version: [3.8, 3.9, "3.10", 3.11, 3.12] steps: - uses: actions/checkout@v3 with: diff --git a/pyproject.toml b/pyproject.toml index 641f6fd1..d8ef4c3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ classifiers = [ "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Operating System :: OS Independent", ] -requires-python = ">=3.8.1, <3.12" +requires-python = ">=3.8.1" dependencies = [ "pyside6 >= 6.5.0, != 6.5.3, < 6.6", "pyodbc >=4.0",