Skip to content

Commit d400e38

Browse files
committed
Update some links
1 parent ecf4ea5 commit d400e38

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.pre-commit-config.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repos:
3535

3636
# Check python code static typing
3737
- repo: https://github.com/pre-commit/mirrors-mypy
38-
rev: v1.4.1
38+
rev: v1.5.1
3939
hooks:
4040
- id: mypy
4141
args: [--config, ./mypy.ini]
@@ -52,7 +52,7 @@ repos:
5252

5353
# Autoformat: YAML, JSON, Markdown, etc.
5454
- repo: https://github.com/pre-commit/mirrors-prettier
55-
rev: v3.0.0
55+
rev: v3.0.2
5656
hooks:
5757
- id: prettier
5858

@@ -66,15 +66,15 @@ repos:
6666
- id: trailing-whitespace
6767

6868
# Lint: Dockerfile
69-
- repo: https://github.com/hadolint/hadolint.git
69+
- repo: https://github.com/hadolint/hadolint
7070
rev: v2.12.1-beta
7171
hooks:
7272
- id: hadolint-docker
7373
entry: hadolint/hadolint:v2.12.1-beta hadolint
7474

7575
# Lint: Dockerfile
7676
# We're linting .dockerfile files as well
77-
- repo: https://github.com/hadolint/hadolint.git
77+
- repo: https://github.com/hadolint/hadolint
7878
rev: v2.12.1-beta
7979
hooks:
8080
- id: hadolint-docker
@@ -84,15 +84,15 @@ repos:
8484
files: \.dockerfile$
8585

8686
# Lint: YAML
87-
- repo: https://github.com/adrienverge/yamllint.git
87+
- repo: https://github.com/adrienverge/yamllint
8888
rev: v1.32.0
8989
hooks:
9090
- id: yamllint
9191
args: ["-d {extends: relaxed, rules: {line-length: disable}}", "-s"]
9292
files: \.(yaml|yml)$
9393

9494
# Lint: Bash scripts
95-
- repo: https://github.com/openstack-dev/bashate.git
95+
- repo: https://github.com/openstack/bashate
9696
rev: 2.1.1
9797
hooks:
9898
- id: bashate
@@ -137,13 +137,13 @@ repos:
137137
- id: nbqa-flake8
138138

139139
# Run black on python code blocks in documentation files.
140-
- repo: https://github.com/asottile/blacken-docs
141-
rev: 1.15.0
140+
- repo: https://github.com/adamchainz/blacken-docs
141+
rev: 1.16.0
142142
hooks:
143143
- id: blacken-docs
144144
# --skip-errors is added to allow us to have python syntax highlighting even if
145145
# the python code blocks includes jupyter specific additions such as % or !
146-
# See https://github.com/asottile/blacken-docs/issues/127 for an upstream
146+
# See https://github.com/adamchainz/blacken-docs/issues/127 for an upstream
147147
# feature request about this.
148148
args: [--target-version=py39, --skip-errors]
149149

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
}
5858
pygments_style = "sphinx"
5959

60-
# MyST configuration reference: https://myst-parser.readthedocs.io/en/latest/sphinx/reference.html
60+
# MyST configuration reference: https://myst-parser.readthedocs.io/en/latest/configuration.html
6161
myst_heading_anchors = 3
6262

6363
linkcheck_ignore = [

examples/make-deploy/letsencrypt.makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# BE CAREFUL when using Docker engine <1.10 because running a container with
55
# `--rm` option while mounting a docker volume may wipe out the volume.
6-
# See issue: https://github.com/docker/docker/issues/17907
6+
# See issue: https://github.com/moby/moby/issues/17907
77

88
# Use letsencrypt production server by default to get a real cert.
99
# Use CERT_SERVER=--staging to hit the staging server (not a real cert).

images/docker-stacks-foundation/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ if [ "$(id -u)" == 0 ] ; then
178178
# command. The behavior can be inspected with `sudo -V` run as root.
179179
#
180180
# ref: `man sudo` https://linux.die.net/man/8/sudo
181-
# ref: `man sudoers` https://www.sudo.ws/man/1.8.15/sudoers.man.html
181+
# ref: `man sudoers` https://www.sudo.ws/docs/man/sudoers.man/
182182
#
183183
# - We use the `--preserve-env` flag to pass through most environment
184184
# variables, but understand that exceptions are caused by the sudoers

images/scipy-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ RUN mamba install --yes \
6767

6868
# Install facets which does not have a pip or conda package at the moment
6969
WORKDIR /tmp
70-
RUN git clone https://github.com/PAIR-code/facets.git && \
70+
RUN git clone https://github.com/PAIR-code/facets && \
7171
jupyter nbclassic-extension install facets/facets-dist/ --sys-prefix && \
7272
rm -rf /tmp/facets && \
7373
fix-permissions "${CONDA_DIR}" && \

0 commit comments

Comments
 (0)