Skip to content

Commit b9334f9

Browse files
authored
Merge branch 'main' into start-notebook-python
2 parents 237de69 + 4c0c0aa commit b9334f9

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/docker-wiki-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Push Wiki to GitHub 📤
4242
if: github.repository == 'jupyter/docker-stacks' && (github.ref == 'refs/heads/main' || github.event_name == 'schedule')
43-
uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a # v4.16.0
43+
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5.0.0
4444
with:
4545
commit_message: "Automated wiki publish for ${{ github.sha }}"
4646
repository: wiki/

.pre-commit-config.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
repos:
1515
# Autoupdate: Python code
1616
- repo: https://github.com/asottile/pyupgrade
17-
rev: v3.13.0
17+
rev: v3.14.0
1818
hooks:
1919
- id: pyupgrade
2020
args: [--py39-plus]
2121

2222
# Automatically sort python imports
23-
- repo: https://github.com/pycqa/isort
23+
- repo: https://github.com/PyCQA/isort
2424
rev: 5.12.0
2525
hooks:
2626
- id: isort
@@ -40,7 +40,15 @@ repos:
4040
- id: mypy
4141
args: [--config, ./mypy.ini]
4242
additional_dependencies:
43-
["numpy", "pytest", "requests", "types-requests", "types-tabulate"]
43+
[
44+
"numpy",
45+
"pytest",
46+
"requests",
47+
"urllib3",
48+
"types-requests",
49+
"types-tabulate",
50+
"types-urllib3",
51+
]
4452
# Unfortunately, `pre-commit` only runs on changed files
4553
# This doesn't work well with `mypy --follow-imports error`
4654
# See: https://github.com/pre-commit/mirrors-mypy/issues/34#issuecomment-1062160321
@@ -100,7 +108,7 @@ repos:
100108

101109
# Lint: Shell scripts
102110
- repo: https://github.com/shellcheck-py/shellcheck-py
103-
rev: v0.9.0.5
111+
rev: v0.9.0.6
104112
hooks:
105113
- id: shellcheck
106114
args: ["-x"]

mypy.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,3 @@ ignore_missing_imports = True
4141

4242
[mypy-tensorflow.*]
4343
ignore_missing_imports = True
44-
45-
[mypy-urllib3.*]
46-
ignore_missing_imports = True

0 commit comments

Comments
 (0)