# HG changeset patch # User Anton Shestakov # Date 1704558373 10800 # Node ID 9c329a7a59229f79d25af943c1bbef0dbdb0ff9a # Parent da3fd8644ad9fe151d666c370a7fe8bc2d20b419 ci: install the newest pytype to date (2024.1.5) diff -r da3fd8644ad9 -r 9c329a7a5922 .gitlab-ci.yml --- 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 diff -r da3fd8644ad9 -r 9c329a7a5922 contrib/docker/pytype/Dockerfile --- 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