Skip to content

Commit

Permalink
Update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Jun 29, 2022
1 parent 777d32e commit e3f1a7a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version_testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
6 changes: 3 additions & 3 deletions version_testing/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit e3f1a7a

Please sign in to comment.