From 6ba77b3568a7e66a6bbd83bc3d558cd28aedfba1 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 13 Nov 2022 17:32:30 -0800 Subject: [PATCH] Adding newer python versions to setup.rb and test grid --- .github/workflows/python-package.yml | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 850cce8..2295312 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.8", "3.9", "3.10"] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index cc27235..2832b81 100644 --- a/setup.py +++ b/setup.py @@ -16,10 +16,11 @@ setup(name='pycmx', 'Topic :: Multimedia', 'Topic :: Multimedia :: Video', 'Topic :: Text Processing', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8' + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10' ], packages=['pycmx'])