From 7fe7be2deecfd89921d5fd20c3fa73a3ca162816 Mon Sep 17 00:00:00 2001 From: Tim Vink Date: Mon, 26 Aug 2024 15:12:02 +0000 Subject: [PATCH] do not unit test for python 3.7 --- .github/workflows/unittests.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 804ac91..41ea6c4 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@master - name: Setup Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index c7c7842..33c17d8 100644 --- a/setup.py +++ b/setup.py @@ -15,12 +15,11 @@ author_email="vinktim@gmail.com", license="MIT", include_package_data=True, - python_requires=">=3.6", + python_requires=">=3.7", classifiers=[ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",