This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix-queryserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 434eae4  PHOENIX-6858 Add Python 3.11 to supported languages and 
update docker test image for phoenixdb
434eae4 is described below

commit 434eae46b5b34febd3e475b80f78ce5d9780d393
Author: Istvan Toth <st...@apache.org>
AuthorDate: Mon Jan 23 10:47:41 2023 +0100

    PHOENIX-6858 Add Python 3.11 to supported languages and update docker test 
image for phoenixdb
---
 python-phoenixdb/Dockerfile | 4 ++--
 python-phoenixdb/setup.py   | 3 ++-
 python-phoenixdb/tox.ini    | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/python-phoenixdb/Dockerfile b/python-phoenixdb/Dockerfile
index a6aea1c..95f6b2d 100644
--- a/python-phoenixdb/Dockerfile
+++ b/python-phoenixdb/Dockerfile
@@ -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 \
diff --git a/python-phoenixdb/setup.py b/python-phoenixdb/setup.py
index 749bc90..f689b16 100644
--- a/python-phoenixdb/setup.py
+++ b/python-phoenixdb/setup.py
@@ -89,7 +89,8 @@ setup(
         '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={
diff --git a/python-phoenixdb/tox.ini b/python-phoenixdb/tox.ini
index 93281bb..0589a53 100644
--- a/python-phoenixdb/tox.ini
+++ b/python-phoenixdb/tox.ini
@@ -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 =

Reply via email to