Removing 3.6 from test grid and project classifiers

3.6 isn't supported by the github actions anymore.
This commit is contained in:
Jamie Hardt
2023-05-17 16:24:36 -07:00
parent 9838e6b357
commit 3a9d81417e
2 changed files with 2 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@@ -7,14 +7,13 @@ name = "pycmx"
authors = [{name = "Jamie Hardt", email = "jamiehardt@me.com"}] authors = [{name = "Jamie Hardt", email = "jamiehardt@me.com"}]
readme = "README.md" readme = "README.md"
dynamic = ["version", "description"] dynamic = ["version", "description"]
requires-python = "~=3.6" requires-python = "~=3.7"
classifiers = [ classifiers = [
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Topic :: Multimedia', 'Topic :: Multimedia',
'Topic :: Multimedia :: Video', 'Topic :: Multimedia :: Video',
'Topic :: Text Processing', 'Topic :: Text Processing',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',