Skip to content

Commit

Permalink
PHOENIX-6858 Add Python 3.11 to supported languages and update docker…
Browse files Browse the repository at this point in the history
… test image for phoenixdb
  • Loading branch information
stoty committed Jan 24, 2023
1 parent 4b22faa commit 434eae4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python-phoenixdb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ from advian/tox-base:ubuntu as tox
###########################
# Prebuild given versions #
###########################
ARG BUILD_PYTHON_VERSIONS="3.10 3.9 3.8 3.7 3.6" #Can we take this from the parent image ?
ARG EXTRA_PYTHON_VERSIONS="3.5 2.7"
ARG BUILD_PYTHON_VERSIONS="3.11 3.10 3.9 3.8" #Can we take this from the parent image ?
ARG EXTRA_PYTHON_VERSIONS="3.5 3.6 3.7 2.7"
RUN export RESOLVED_VERSIONS=`pyenv_resolve $BUILD_PYTHON_VERSIONS` \
&& export EXTRA_RESOLVED_VERSIONS=`pyenv_resolve $EXTRA_PYTHON_VERSIONS` \
&& for pyver in $EXTRA_RESOLVED_VERSIONS; do pyenv install $pyver; done \
Expand Down
3 changes: 2 additions & 1 deletion python-phoenixdb/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def readme():
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
install_requires=install_requires,
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion python-phoenixdb/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.

[tox]
envlist = py27,py35,py36,py37,py38,py39,py310
envlist = py27,py35,py36,py37,py38,py39,py310,py311
[testenv]
passenv = PHOENIXDB_TEST_DB_URL
commands =
Expand Down

0 comments on commit 434eae4

Please sign in to comment.