Skip to content

Commit e0a3082

Browse files
[pre-commit.ci] pre-commit autoupdate (#2306)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pre-commit/mirrors-mypy: 7010b10a09f65cd60a23c207349b539aa36dbec1 → 0f86793af5ef5f6dc63c8d04a3cabfa3ea8f9c6a](pre-commit/mirrors-mypy@7010b10...0f86793) - [github.com/rbubley/mirrors-prettier: 787fb9f542b140ba0b2aced38e6a3e68021647a3 → 5ba47274f9b181bce26a5150a725577f3c336011](rbubley/mirrors-prettier@787fb9f...5ba4727) - [github.com/PyCQA/flake8: 4b5e89b4b108a6c1a000c591d334a99a80d34c7b → d93590f5be797aabb60e3b09f2f52dddb02f349f](PyCQA/flake8@4b5e89b...d93590f) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent c4c4d38 commit e0a3082

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 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: 7010b10a09f65cd60a23c207349b539aa36dbec1 # frozen: v1.16.0
38+
rev: 0f86793af5ef5f6dc63c8d04a3cabfa3ea8f9c6a # frozen: v1.16.1
3939
hooks:
4040
- id: mypy
4141
args: [--config, ./mypy.ini]
@@ -64,7 +64,7 @@ repos:
6464

6565
# Autoformat: YAML, JSON, Markdown, etc.
6666
- repo: https://github.com/rbubley/mirrors-prettier
67-
rev: 787fb9f542b140ba0b2aced38e6a3e68021647a3 # frozen: v3.5.3
67+
rev: 5ba47274f9b181bce26a5150a725577f3c336011 # frozen: v3.6.2
6868
hooks:
6969
- id: prettier
7070

@@ -120,7 +120,7 @@ repos:
120120

121121
# Lint: Python
122122
- repo: https://github.com/PyCQA/flake8
123-
rev: 4b5e89b4b108a6c1a000c591d334a99a80d34c7b # frozen: 7.2.0
123+
rev: d93590f5be797aabb60e3b09f2f52dddb02f349f # frozen: 7.3.0
124124
hooks:
125125
- id: flake8
126126

docs/using/specifics.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ You can build a `pyspark-notebook` image with a different `Spark` version by ove
4444

4545
- Spark distribution is defined by the combination of Spark, Hadoop, and Scala versions,
4646
see [Download Apache Spark](https://spark.apache.org/downloads.html) and the [archive repo](https://archive.apache.org/dist/spark/) for more information.
47-
4847
- `openjdk_version`: The version of the OpenJDK (JRE headless) distribution (`17` by default).
4948
- This version needs to match the version supported by the Spark distribution used above.
5049
- See [Spark Overview](https://spark.apache.org/docs/latest/#downloading) and [Ubuntu packages](https://packages.ubuntu.com/search?keywords=openjdk).

docs/using/troubleshooting.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ The following sections cover a few of these scenarios and how to fix them.
5454
```
5555

5656
where:
57-
5857
- `CHOWN_EXTRA=<some-dir>,<some-other-dir>`: will change the ownership and group of the specified container directory (non-recursive by default).
5958
You need to provide full paths starting with `/`.
6059
- `CHOWN_EXTRA_OPTS="-R"`: will recursively change the ownership and group of the directory specified in `CHOWN_EXTRA`.
@@ -107,7 +106,6 @@ The following sections cover a few of these scenarios and how to fix them.
107106
```
108107

109108
where:
110-
111109
- `NB_UID` and `NB_GID` should match the local user's UID and GID.
112110
- You **must** use `--user root` to ensure that the `UID` and `GID` are updated at runtime.
113111

@@ -163,7 +161,6 @@ If you have also **created a new user**, you might be experiencing any of the fo
163161
```
164162

165163
where:
166-
167164
- `-e NB_USER=callisto`: will create a new user `callisto` and automatically add it to the `users` group (does not delete jovyan)
168165
- `-e NB_UID=1234` and `-e NB_GID=1234`: will set the `UID` and `GID` of the new user (`callisto`) to `1234`
169166
- `-e CHOWN_HOME_OPTS="-R"` and `-e CHOWN_HOME=yes`: ensure that the new user is the owner of the `/home` directory and subdirectories
@@ -199,7 +196,6 @@ If you have also **created a new user**, you might be experiencing any of the fo
199196
```
200197

201198
where:
202-
203199
- `"$(id -u)"` and `"$(id -g)"` will dynamically assign the `UID` and `GID` of the user executing the `docker run` command to the new user (`callisto`)
204200

205201
## Additional tips and troubleshooting commands for permission-related errors

0 commit comments

Comments
 (0)