From e3f1a7a482eb831479d9715101a41506b4d1d401 Mon Sep 17 00:00:00 2001 From: Jennings Zhang Date: Wed, 29 Jun 2022 18:40:16 -0400 Subject: [PATCH] Update python versions --- .github/workflows/test.yml | 2 +- version_testing/Dockerfile | 2 +- version_testing/docker-compose.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e45225e..e0ae248 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8.2', '3.9', '3.10.2' ] + python-version: [ '3.8.2', '3.9', '3.10' ] steps: - uses: actions/checkout@v2 - name: Setup Python diff --git a/version_testing/Dockerfile b/version_testing/Dockerfile index df81b58..4f0261d 100644 --- a/version_testing/Dockerfile +++ b/version_testing/Dockerfile @@ -2,7 +2,7 @@ # The source code should be mounted inside the container as a volume to # /usr/local/src/chris_plugin/chris_plugin -ARG PYTHON_VERSION=3.10.2 +ARG PYTHON_VERSION=3.10 FROM python:${PYTHON_VERSION}-slim LABEL org.chrisproject.test=chris_plugin \ org.chrisproject.python_version=${PYTHON_VERSION} diff --git a/version_testing/docker-compose.yml b/version_testing/docker-compose.yml index dac134d..2aaa92a 100644 --- a/version_testing/docker-compose.yml +++ b/version_testing/docker-compose.yml @@ -7,16 +7,16 @@ services: context: .. dockerfile: ./version_testing/Dockerfile args: - PYTHON_VERSION: 3.8.2 + PYTHON_VERSION: "3.8.2" py-3.9: build: context: .. dockerfile: ./version_testing/Dockerfile args: - PYTHON_VERSION: 3.9 + PYTHON_VERSION: "3.9" py-3.10: build: context: .. dockerfile: ./version_testing/Dockerfile args: - PYTHON_VERSION: 3.10.2 + PYTHON_VERSION: "3.10"