diff --git a/.github/workflows/test.yml b/.github/workflows/test.yaml similarity index 94% rename from .github/workflows/test.yml rename to .github/workflows/test.yaml index 03c3c05..945b1be 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 8053c1b..e531f99 100644 --- a/setup.py +++ b/setup.py @@ -36,8 +36,6 @@ zip_safe=True, classifiers=[ 'Programming Language :: Python :: 3 :: Only', - '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', @@ -49,5 +47,5 @@ 'Topic :: Software Development :: Build Tools', 'Topic :: System :: Software Distribution', ], - python_requires='>=3.6', + python_requires='>=3.8.1', )