From ee3fffd3493f192b622744607497cafddaff738d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Va=C5=A1ina?= Date: Fri, 30 Jun 2023 11:11:09 +0200 Subject: [PATCH] Bump GHA python version check to 3.10 and 3.11 (#877) * Bump GHA python version check to 3.10 and 3.11 * Make list items string * Update setup.py to reflect supported version (cherry picked from commit 88a9f225088ca84ec865e10926522eb2fbf58ea8) --- .github/workflows/pull_request.yml | 2 +- setup.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 4b1d39c5e..7ff92f95b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9] + python-version: ['3.10', '3.11'] steps: - name: Checkout Airgun uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 51995ecb1..a7a680653 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,7 @@ 'Natural Language :: English', 'Operating System :: POSIX :: LinuxProgramming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], )