Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion phoenix-queryserver-it/src/it/bin/test_phoenixdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pushd ${PY_ENV_PATH}/bin

# conda activate does stuff with unbound variables :(
set +u
. activate ""
. ./activate ""

popd

Expand Down
6 changes: 3 additions & 3 deletions python-phoenixdb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from advian/tox-base:ubuntu-jammy-2024-02-07 as tox
from advian/tox-base:ubuntu-jammy-2024-10-10 as tox

###########################
# Prebuild given versions #
###########################
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.12 3.5 3.6 3.7 2.7"
ARG BUILD_PYTHON_VERSIONS="3.13 3.12 3.11 3.10 3.9" #Can we take this from the parent image ?
ARG EXTRA_PYTHON_VERSIONS="3.5 3.6 3.7 3.8 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 @@ -94,7 +94,8 @@ def readme():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
],
install_requires=install_requires,
tests_require=[
Expand Down
3 changes: 2 additions & 1 deletion python-phoenixdb/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ envlist = py27-SQLAlchemy{13,14},
py39-SQLAlchemy{13,14,20},
py310-SQLAlchemy{13,14,20},
py311-SQLAlchemy{13,14,20},
py312-SQLAlchemy{13,14,20}
py312-SQLAlchemy{13,14,20},
py313-SQLAlchemy{13,14,20}
[testenv]
passenv = PHOENIXDB_TEST_DB_URL
commands =
Expand Down