Skip to content

Commit

Permalink
updated python versions to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonpzg committed Oct 3, 2024
1 parent 2a03a65 commit bc2a2af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ jobs:
env:
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push PYTHON_VERSION=3.8.10
make docker-tag-base-python docker-push-base-python PYTHON_VERSION=3.8.10
docker save -o /tmp/base-wrapper.tar seldonio/seldon-core-s2i-python38:${VERSION}
make docker-build docker-push PYTHON_VERSION=3.10.15
make docker-tag-base-python docker-push-base-python PYTHON_VERSION=3.10.15
docker save -o /tmp/base-wrapper.tar seldonio/seldon-core-s2i-python310:${VERSION}
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion python-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt-get upgrade -y && \


# This is to install desired version of Python without updating conda version
ENV PYTHON_VERSION "3.7.10"
ENV PYTHON_VERSION "3.10.15"
ENV CONDA_VERSION "4.7.12"
RUN conda install --yes -c conda-forge python=$PYTHON_VERSION conda=$CONDA_VERSION

Expand Down
4 changes: 2 additions & 2 deletions wrappers/s2i/python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ VERSION ?= $(shell cat ../../../version.txt)

DOCKER_REGISTRY ?= seldonio

CONDA_DOWNLOAD_VERSION ?= py38_23.3.1-0
CONDA_DOWNLOAD_VERSION ?= py310
CONDA_VERSION ?= 23.5.0
PYTHON_VERSION ?= 3.8.10
PYTHON_VERSION ?= 3.10.15

IMAGE_PYTHON_VERSION = $(shell echo -n $(PYTHON_VERSION) | cut -d. -f1-2 | sed 's/\.//g')
DEFAULT_IMAGE_PYTHON_VERSION = $(shell echo -n $(PYTHON_VERSION) | cut -d. -f1)
Expand Down

0 comments on commit bc2a2af

Please sign in to comment.