Skip to content

Commit c985e33

Browse files
authored
Merge pull request #496 from jupyterhub/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 11fcf89 + 0606244 commit c985e33

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
repos:
1212
# Autoformat: Python code, syntax patterns are modernized
1313
- repo: https://github.com/asottile/pyupgrade
14-
rev: v3.15.0
14+
rev: v3.19.0
1515
hooks:
1616
- id: pyupgrade
1717
args:
1818
- --py38-plus
1919

2020
# Autoformat: Python code
2121
- repo: https://github.com/PyCQA/autoflake
22-
rev: v2.2.1
22+
rev: v2.3.1
2323
hooks:
2424
- id: autoflake
2525
# args ref: https://github.com/PyCQA/autoflake#advanced-usage
@@ -28,26 +28,26 @@ repos:
2828

2929
# Autoformat: Python code
3030
- repo: https://github.com/pycqa/isort
31-
rev: 5.12.0
31+
rev: 5.13.2
3232
hooks:
3333
- id: isort
3434

3535
# Autoformat: Python code
3636
- repo: https://github.com/psf/black
37-
rev: 23.10.1
37+
rev: 24.10.0
3838
hooks:
3939
- id: black
4040
exclude: "contrib\/template\/.*"
4141

4242
# Autoformat: markdown, yaml
4343
- repo: https://github.com/pre-commit/mirrors-prettier
44-
rev: v3.0.3
44+
rev: v4.0.0-alpha.8
4545
hooks:
4646
- id: prettier
4747

4848
# Misc...
4949
- repo: https://github.com/pre-commit/pre-commit-hooks
50-
rev: v4.5.0
50+
rev: v5.0.0
5151
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
5252
hooks:
5353
# Autoformat: Makes sure files end in a newline and only a newline.
@@ -65,7 +65,7 @@ repos:
6565

6666
# Lint: Python code
6767
- repo: https://github.com/PyCQA/flake8
68-
rev: "6.1.0"
68+
rev: "7.1.1"
6969
hooks:
7070
- id: flake8
7171

contrib/theia/jupyter_theia_proxy/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
See https://jupyter-server-proxy.readthedocs.io/en/latest/server-process.html
55
for more information.
66
"""
7+
78
import os
89
import shutil
910

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Reusable test fixtures for ``jupyter_server_proxy``."""
2+
23
import os
34
import shutil
45
import socket

tests/resources/httpinfo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Simple webserver to respond with an echo of the sent request. It can listen to
33
either a tcp port or a unix socket.
44
"""
5+
56
import argparse
67
import socket
78
import sys

0 commit comments

Comments
 (0)