Mercurial > evolve
changeset 6650:9c329a7a5922
ci: install the newest pytype to date (2024.1.5)
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sat, 06 Jan 2024 13:26:13 -0300 |
parents | da3fd8644ad9 |
children | e9650b5616ac |
files | .gitlab-ci.yml contrib/docker/pytype/Dockerfile |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/.gitlab-ci.yml Fri Jan 05 13:58:25 2024 -0300 +++ b/.gitlab-ci.yml Sat Jan 06 13:26:13 2024 -0300 @@ -13,7 +13,7 @@ - hg clone /ci/repos/mercurial/ /tmp/mercurial-ci/ --noupdate --config phases.publish=no - hg -R /tmp/mercurial-ci/ update "$hg_rev" - make -C /tmp/mercurial-ci/ local PYTHON=$PYTHON - - $PYTHON -m pip install --user --break-system-packages --upgrade pytype==2023.11.21 + - $PYTHON -m pip install --user --break-system-packages --upgrade pytype==2024.1.5 - (cd /tmp/mercurial-ci/ && ./contrib/setup-pytype.sh) - pytype --version - pytype --keep-going --jobs auto -P /tmp/mercurial-ci/:hgext3rd hgext3rd
--- a/contrib/docker/pytype/Dockerfile Fri Jan 05 13:58:25 2024 -0300 +++ b/contrib/docker/pytype/Dockerfile Sat Jan 06 13:26:13 2024 -0300 @@ -5,7 +5,7 @@ ENV PATH=/home/ci-runner/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ENV PYTHONPATH=/home/ci-runner/.local/lib/python3.11/site-packages -RUN python3 -m pip install --user --break-system-packages --upgrade pytype==2023.11.21 +RUN python3 -m pip install --user --break-system-packages --upgrade pytype==2024.1.5 ADD --chown=ci-runner entrypoint.sh /home/ci-runner/entrypoint.sh