From b3039e023df2802c587648b4220e4e2dcb4289b9 Mon Sep 17 00:00:00 2001 From: aestene Date: Sat, 14 Oct 2023 13:16:16 +0200 Subject: [PATCH] Update python versions to 3.10 and higher --- .github/workflows/pythonpackage.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 55abf813..9505ee34 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index c27c05f2..15f0453f 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,6 @@ "pre-commit", ] }, - python_requires=">=3.8", + python_requires=">=3.10", tests_require=["pytest"], )