Skip to content

Commit b85ac5f

Browse files
authored
Add Python 3.12 CI build (#1262)
1 parent 29945d7 commit b85ac5f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.11' ]
21+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.11', '3.12' ]
2222

2323
steps:
2424
- uses: actions/checkout@v3

Dockerfile.qa

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ RUN if [ $PYTHON_VERSION = '3.7' ] ; then \
3737
elif [ $PYTHON_VERSION = '3.11' ] ; then \
3838
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
3939
curl -sS https://bootstrap.pypa.io/get-pip.py | python$PYTHON_VERSION ; \
40+
elif [ $PYTHON_VERSION = '3.12' ] ; then \
41+
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
42+
curl -sS https://bootstrap.pypa.io/get-pip.py | python$PYTHON_VERSION ; \
4043
else \
4144
apt install -y python3-distutils python3-distutils-extra python3-apt --reinstall ; \
4245
fi

0 commit comments

Comments
 (0)