From 30db0599d9a14aedee8ac971ff231558d36c449d Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 21 Feb 2022 15:08:45 +0100 Subject: [PATCH] chore(pre-commit): update python versions roster --- pre-commit/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pre-commit/Dockerfile b/pre-commit/Dockerfile index 317d80e7..fabc1620 100644 --- a/pre-commit/Dockerfile +++ b/pre-commit/Dockerfile @@ -6,11 +6,11 @@ ENV version=2.17.0 RUN apt update && apt install -y git golang bash curl build-essential libffi-dev libssl-dev libbz2-dev libncursesw5-dev libgdbm-dev liblzma-dev libsqlite3-dev tk-dev uuid-dev libreadline-dev nodejs npm zlib1g-dev && \ curl --location https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash && \ pyenv update && \ - pyenv install 3.7.9 && \ - pyenv install 3.8.7 && \ - pyenv install 3.9.1 && \ - pyenv install 3.10.0 && \ - pyenv global 3.9.1 3.8.7 3.7.9 3.10.0 && \ + pyenv install 3.7.12 && \ + pyenv install 3.8.12 && \ + pyenv install 3.9.10 && \ + pyenv install 3.10.2 && \ + pyenv global 3.10.2 3.9.10 3.8.12 3.7.12 && \ pyenv rehash && \ npm config set unsafe-perm true && \ pip install pre-commit==$version && \