From f389bb66a0254cefb3226c6a96cedf606e56a38d Mon Sep 17 00:00:00 2001 From: Julius Mittenzwei Date: Fri, 24 Nov 2023 21:28:03 +0100 Subject: [PATCH] Issue #337: Set minimum required python version to 3.9 --- .github/workflows/ci.yml | 4 ++-- setup.py | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9c3ad6b..51eaa6ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -64,7 +64,7 @@ jobs: needs: ["build"] strategy: matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 3513099d..f1e715ff 100644 --- a/setup.py +++ b/setup.py @@ -36,8 +36,9 @@ def get_long_description(): "Intended Audience :: Developers", "Topic :: System :: Hardware :: Hardware Drivers", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], packages=find_packages(), package_data={