From 40ccb20237c05e742bfa3faf87b9e8b36e8bbe5a Mon Sep 17 00:00:00 2001 From: Matthew Plough Date: Sat, 7 Sep 2024 12:42:51 -0400 Subject: [PATCH] Clean up Python 3.8 cruft (#238) --- .github/scripts/build-linux.sh | 4 +--- .github/scripts/test-linux.sh | 4 +--- setup.py | 4 ++++ 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/scripts/build-linux.sh b/.github/scripts/build-linux.sh index 5ee8374..92d58f1 100755 --- a/.github/scripts/build-linux.sh +++ b/.github/scripts/build-linux.sh @@ -10,9 +10,7 @@ CHECK_SHA256=.github/scripts/check_sha256.sh # List python versions ls /opt/python -if [ $PYTHON_VERSION == "3.8" ]; then - PYBIN="/opt/python/cp38-cp38/bin" -elif [ $PYTHON_VERSION == "3.9" ]; then +if [ $PYTHON_VERSION == "3.9" ]; then PYBIN="/opt/python/cp39-cp39/bin" elif [ $PYTHON_VERSION == "3.10" ]; then PYBIN="/opt/python/cp310-cp310/bin" diff --git a/.github/scripts/test-linux.sh b/.github/scripts/test-linux.sh index fa02bbf..ab5429d 100755 --- a/.github/scripts/test-linux.sh +++ b/.github/scripts/test-linux.sh @@ -6,9 +6,7 @@ cd /io # List python versions ls /opt/python -if [ $PYTHON_VERSION == "3.8" ]; then - PYBIN="/opt/python/cp38-cp38/bin" -elif [ $PYTHON_VERSION == "3.9" ]; then +if [ $PYTHON_VERSION == "3.9" ]; then PYBIN="/opt/python/cp39-cp39/bin" elif [ $PYTHON_VERSION == "3.10" ]; then PYBIN="/opt/python/cp310-cp310/bin" diff --git a/setup.py b/setup.py index ab078e7..c5809aa 100644 --- a/setup.py +++ b/setup.py @@ -298,6 +298,10 @@ def mac_libraw_compile(): 'License :: OSI Approved :: MIT License', 'Programming Language :: Cython', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX',