From aef7a5a094853972cbe1ce9127ad1a546ea7f2ab Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Thu, 23 Dec 2021 18:44:34 +0300 Subject: [PATCH] python update --- testenv/Dockerfile | 16 ++++++++++++++-- testenv/tox.ini | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/testenv/Dockerfile b/testenv/Dockerfile index da675ebb..fff5514a 100644 --- a/testenv/Dockerfile +++ b/testenv/Dockerfile @@ -5,8 +5,20 @@ RUN mkdir -p /etc/pacman.d/hooks \ RUN echo "Server = http://mirror.yandex.ru/archlinux/\$repo/os/\$arch" > /etc/pacman.d/mirrorlist -RUN pacman -Syu --noconfirm \ - && pacman -S --needed --noconfirm \ +RUN pacman --noconfirm --ask=4 -Syy \ + && pacman --needed --noconfirm --ask=4 -S \ + glibc \ + pacman \ + && pacman-db-upgrade \ + && pacman --noconfirm --ask=4 -Syu \ + && pacman --needed --noconfirm --ask=4 -S \ + p11-kit \ + archlinux-keyring \ + ca-certificates \ + ca-certificates-mozilla \ + ca-certificates-utils \ + && pacman -Syu --noconfirm --ask=4 \ + && pacman -S --needed --noconfirm --ask=4 \ autoconf-archive \ help2man \ m4 \ diff --git a/testenv/tox.ini b/testenv/tox.ini index bc071697..e0eb0d53 100644 --- a/testenv/tox.ini +++ b/testenv/tox.ini @@ -3,7 +3,7 @@ envlist = flake8, pylint, mypy, vulture, pytest, eslint, htmlhint skipsdist = true [testenv] -basepython = python3.9 +basepython = python3.10 sitepackages = true changedir = /src