Skip to content

Commit

Permalink
Add Python 3.12 CI build (#1262)
Browse files Browse the repository at this point in the history
  • Loading branch information
offa authored Oct 16, 2023
1 parent 29945d7 commit b85ac5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.11' ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.11', '3.12' ]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.qa
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ RUN if [ $PYTHON_VERSION = '3.7' ] ; then \
elif [ $PYTHON_VERSION = '3.11' ] ; then \
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
curl -sS https://bootstrap.pypa.io/get-pip.py | python$PYTHON_VERSION ; \
elif [ $PYTHON_VERSION = '3.12' ] ; then \
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
curl -sS https://bootstrap.pypa.io/get-pip.py | python$PYTHON_VERSION ; \
else \
apt install -y python3-distutils python3-distutils-extra python3-apt --reinstall ; \
fi
Expand Down

0 comments on commit b85ac5f

Please sign in to comment.