[ci] utilisation de l'image 3.17 (pour fix le bug exceptiongroup)

This commit is contained in:
Maxime Alves LIRMM 2023-08-20 23:53:18 +02:00
parent 1b713c3816
commit 45cf32de2b
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: python:3.11.4-alpine3.18
image: python:3.11.4-alpine3.17
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
@ -33,13 +33,13 @@ stages:
.before_script_template: &test
before_script:
- apk update && apk add py3-virtualenv py3-pip
- apk update && apk add py3-virtualenv py3-pip py3-exceptiongroup
- python3 -V # Print out python version for debugging
- pip3 install pipenv
- pipenv install --dev
test:
image: python:${PYVERSION}-alpine3.18
image: python:${PYVERSION}-alpine3.17
stage: test
<<: *test
parallel: