diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6bb19b37..ee6132ec 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,7 +35,7 @@ repos: # Check python code static typing - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.4.1 + rev: v1.5.1 hooks: - id: mypy args: [--config, ./mypy.ini] @@ -52,7 +52,7 @@ repos: # Autoformat: YAML, JSON, Markdown, etc. - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.0 + rev: v3.0.2 hooks: - id: prettier @@ -66,7 +66,7 @@ repos: - id: trailing-whitespace # Lint: Dockerfile - - repo: https://github.com/hadolint/hadolint.git + - repo: https://github.com/hadolint/hadolint rev: v2.12.1-beta hooks: - id: hadolint-docker @@ -74,7 +74,7 @@ repos: # Lint: Dockerfile # We're linting .dockerfile files as well - - repo: https://github.com/hadolint/hadolint.git + - repo: https://github.com/hadolint/hadolint rev: v2.12.1-beta hooks: - id: hadolint-docker @@ -84,7 +84,7 @@ repos: files: \.dockerfile$ # Lint: YAML - - repo: https://github.com/adrienverge/yamllint.git + - repo: https://github.com/adrienverge/yamllint rev: v1.32.0 hooks: - id: yamllint @@ -92,7 +92,7 @@ repos: files: \.(yaml|yml)$ # Lint: Bash scripts - - repo: https://github.com/openstack-dev/bashate.git + - repo: https://github.com/openstack/bashate rev: 2.1.1 hooks: - id: bashate @@ -137,13 +137,13 @@ repos: - id: nbqa-flake8 # Run black on python code blocks in documentation files. - - repo: https://github.com/asottile/blacken-docs - rev: 1.15.0 + - repo: https://github.com/adamchainz/blacken-docs + rev: 1.16.0 hooks: - id: blacken-docs # --skip-errors is added to allow us to have python syntax highlighting even if # the python code blocks includes jupyter specific additions such as % or ! - # See https://github.com/asottile/blacken-docs/issues/127 for an upstream + # See https://github.com/adamchainz/blacken-docs/issues/127 for an upstream # feature request about this. args: [--target-version=py39, --skip-errors] diff --git a/docs/conf.py b/docs/conf.py index dad3b3cb..7ef2b342 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ source_suffix = { } pygments_style = "sphinx" -# MyST configuration reference: https://myst-parser.readthedocs.io/en/latest/sphinx/reference.html +# MyST configuration reference: https://myst-parser.readthedocs.io/en/latest/configuration.html myst_heading_anchors = 3 linkcheck_ignore = [ diff --git a/examples/make-deploy/letsencrypt.makefile b/examples/make-deploy/letsencrypt.makefile index 3ef9b092..19549657 100644 --- a/examples/make-deploy/letsencrypt.makefile +++ b/examples/make-deploy/letsencrypt.makefile @@ -3,7 +3,7 @@ # BE CAREFUL when using Docker engine <1.10 because running a container with # `--rm` option while mounting a docker volume may wipe out the volume. -# See issue: https://github.com/docker/docker/issues/17907 +# See issue: https://github.com/moby/moby/issues/17907 # Use letsencrypt production server by default to get a real cert. # Use CERT_SERVER=--staging to hit the staging server (not a real cert). diff --git a/images/docker-stacks-foundation/start.sh b/images/docker-stacks-foundation/start.sh index 4ccd3792..b770efcd 100755 --- a/images/docker-stacks-foundation/start.sh +++ b/images/docker-stacks-foundation/start.sh @@ -178,7 +178,7 @@ if [ "$(id -u)" == 0 ] ; then # command. The behavior can be inspected with `sudo -V` run as root. # # ref: `man sudo` https://linux.die.net/man/8/sudo - # ref: `man sudoers` https://www.sudo.ws/man/1.8.15/sudoers.man.html + # ref: `man sudoers` https://www.sudo.ws/docs/man/sudoers.man/ # # - We use the `--preserve-env` flag to pass through most environment # variables, but understand that exceptions are caused by the sudoers diff --git a/images/scipy-notebook/Dockerfile b/images/scipy-notebook/Dockerfile index 28382337..82708471 100644 --- a/images/scipy-notebook/Dockerfile +++ b/images/scipy-notebook/Dockerfile @@ -67,7 +67,7 @@ RUN mamba install --yes \ # Install facets which does not have a pip or conda package at the moment WORKDIR /tmp -RUN git clone https://github.com/PAIR-code/facets.git && \ +RUN git clone https://github.com/PAIR-code/facets && \ jupyter nbclassic-extension install facets/facets-dist/ --sys-prefix && \ rm -rf /tmp/facets && \ fix-permissions "${CONDA_DIR}" && \