From a1bffe4f269d421dc1106251c9795cd0394db0f8 Mon Sep 17 00:00:00 2001 From: Henrich Hartzer Date: Fri, 7 Jul 2023 15:42:25 +0000 Subject: [PATCH] Update Github CI removing end-of-lifed Python 3.6 and 3.7, add 3.11 --- .github/workflows/ci.yml | 6 ++---- setup.py | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abde86e1..17e4ba91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,10 @@ jobs: strategy: matrix: python-version: - - "3.6" - - "3.7" - "3.8" - "3.9" - "3.10" + - "3.11" steps: - uses: actions/checkout@v2 - name: Install Python 3 @@ -55,11 +54,10 @@ jobs: strategy: matrix: python-version: - - "3.6" - - "3.7" - "3.8" - "3.9" - "3.10" + - "3.11" steps: - uses: actions/checkout@v2 - name: Install Python 3 diff --git a/setup.py b/setup.py index e0c45917..a354b706 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], packages=["meshtastic"], include_package_data=True,