From 3a9d81417ec92678e982d2c34b09504ccf6fa9b3 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 17 May 2023 16:24:36 -0700 Subject: [PATCH] Removing 3.6 from test grid and project classifiers 3.6 isn't supported by the github actions anymore. --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index db85354..35d58e0 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false 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: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 2503620..a66e9d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,14 +7,13 @@ name = "pycmx" authors = [{name = "Jamie Hardt", email = "jamiehardt@me.com"}] readme = "README.md" dynamic = ["version", "description"] -requires-python = "~=3.6" +requires-python = "~=3.7" classifiers = [ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', 'Topic :: Multimedia', 'Topic :: Multimedia :: Video', 'Topic :: Text Processing', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',