Skip to content

Commit 40ccb20

Browse files
Clean up Python 3.8 cruft (#238)
1 parent cfc1f24 commit 40ccb20

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/scripts/build-linux.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ CHECK_SHA256=.github/scripts/check_sha256.sh
1010
# List python versions
1111
ls /opt/python
1212

13-
if [ $PYTHON_VERSION == "3.8" ]; then
14-
PYBIN="/opt/python/cp38-cp38/bin"
15-
elif [ $PYTHON_VERSION == "3.9" ]; then
13+
if [ $PYTHON_VERSION == "3.9" ]; then
1614
PYBIN="/opt/python/cp39-cp39/bin"
1715
elif [ $PYTHON_VERSION == "3.10" ]; then
1816
PYBIN="/opt/python/cp310-cp310/bin"

.github/scripts/test-linux.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ cd /io
66
# List python versions
77
ls /opt/python
88

9-
if [ $PYTHON_VERSION == "3.8" ]; then
10-
PYBIN="/opt/python/cp38-cp38/bin"
11-
elif [ $PYTHON_VERSION == "3.9" ]; then
9+
if [ $PYTHON_VERSION == "3.9" ]; then
1210
PYBIN="/opt/python/cp39-cp39/bin"
1311
elif [ $PYTHON_VERSION == "3.10" ]; then
1412
PYBIN="/opt/python/cp310-cp310/bin"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,10 @@ def mac_libraw_compile():
298298
'License :: OSI Approved :: MIT License',
299299
'Programming Language :: Cython',
300300
'Programming Language :: Python :: 3',
301+
'Programming Language :: Python :: 3.9',
302+
'Programming Language :: Python :: 3.10',
303+
'Programming Language :: Python :: 3.11',
304+
'Programming Language :: Python :: 3.12',
301305
'Operating System :: MacOS',
302306
'Operating System :: Microsoft :: Windows',
303307
'Operating System :: POSIX',

0 commit comments

Comments
 (0)