From a28da198b9b1ef4126811f3dcd5492d45eea1d27 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Tue, 15 Oct 2024 15:46:44 -0400 Subject: [PATCH] build: require python 3.12, stop testing on 3.11 --- .github/workflows/test.yml | 2 +- poetry.lock | 4 ++-- pyproject.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d72d61fc..e77ed9c2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: ["3.12"] # Expand like ["3.12", "3.13"] to test more versions. type: [ config-verify, diff --git a/poetry.lock b/poetry.lock index a8edf04a..9c3d7cf7 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1289,5 +1289,5 @@ files = [ [metadata] lock-version = "2.0" -python-versions = ">=3.11,<3.13" -content-hash = "5d61d48b158858842e9b73a2a7e26fce563025c91e62e444bad89eaaacf48ed2" +python-versions = ">=3.12,<3.13" +content-hash = "9678a50e6ce6b622f236e50c370b96136bc7acd63c3c95bb1b3860b437a4ec84" diff --git a/pyproject.toml b/pyproject.toml index b05d1f0f..7cc78471 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "qpc" version = "1.10.0" license = {file = "LICENSE"} -requires-python = ">=3.11,<3.13" +requires-python = ">=3.12,<3.13" dynamic = ["scripts"] [tool.poetry] @@ -23,7 +23,7 @@ exclude = [ qpc = 'qpc.__main__:main' [tool.poetry.dependencies] -python = ">=3.11,<3.13" +python = ">=3.12,<3.13" requests = ">=2.28.1" cryptography = ">=37.0.4" setuptools = "^70.0.0"