From 8e85768644863ac867278f30a28bd8172888b4d2 Mon Sep 17 00:00:00 2001 From: OMOTO Tsukasa Date: Mon, 7 Oct 2024 18:26:21 +0900 Subject: [PATCH] Drop support of Python 3.7 and 3.8 (#99) --- .github/workflows/main.yml | 2 -- setup.py | 5 +---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b145213..aa39cc0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,8 +16,6 @@ jobs: strategy: matrix: python-version: - - "3.7" - - "3.8" - "3.9" - "3.10" - "3.11" diff --git a/setup.py b/setup.py index 80cf61f..331c1fe 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ license='MIT', package_dir={'': 'src'}, py_modules=['pytest_pydocstyle'], - python_requires='~=3.7', + python_requires='~=3.9', install_requires=[ 'pytest>=7.0', 'pydocstyle', @@ -41,9 +41,6 @@ 'License :: OSI Approved :: MIT License', 'Framework :: Pytest', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',