From 2b5f10c2115a695b3d106d70bd2ed461a6e60c74 Mon Sep 17 00:00:00 2001 From: Marc Sibson <125162+sibson@users.noreply.github.com> Date: Fri, 22 Dec 2023 07:40:54 -0500 Subject: [PATCH] remove python3.7 support --- .github/workflows/pythonapp.yml | 5 +---- setup.cfg | 5 ++--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 4f06a9f..a97e80f 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -12,10 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] - exclude: - - os: windows-latest - python-version: '3.7' + python-version: ['3.8', '3.9', '3.10', '3.11'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/setup.cfg b/setup.cfg index 0b677df..c2bc77a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,11 +7,11 @@ author_email = sibson+vncdotool@gmail.com description = Command line VNC client long_description = file: README.rst, CHANGELOG.rst keywords = VNC, RFB -python_requires = >=3.7 +python_requires = >=3.8 license = MIT License license_files = LICENSE.txt classifiers = - Development Status :: 4 - Beta + Development Status :: 5 - Production/Stable Environment :: Console Framework :: Twisted Intended Audience :: Developers @@ -21,7 +21,6 @@ classifiers = Operating System :: Microsoft :: Windows Operating System :: POSIX Programming Language :: Python - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10