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',