File tree 4 files changed +10
-7
lines changed
contrib/theia/jupyter_theia_proxy 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 11
11
repos :
12
12
# Autoformat: Python code, syntax patterns are modernized
13
13
- repo : https://github.com/asottile/pyupgrade
14
- rev : v3.15 .0
14
+ rev : v3.19 .0
15
15
hooks :
16
16
- id : pyupgrade
17
17
args :
18
18
- --py38-plus
19
19
20
20
# Autoformat: Python code
21
21
- repo : https://github.com/PyCQA/autoflake
22
- rev : v2.2 .1
22
+ rev : v2.3 .1
23
23
hooks :
24
24
- id : autoflake
25
25
# args ref: https://github.com/PyCQA/autoflake#advanced-usage
@@ -28,26 +28,26 @@ repos:
28
28
29
29
# Autoformat: Python code
30
30
- repo : https://github.com/pycqa/isort
31
- rev : 5.12.0
31
+ rev : 5.13.2
32
32
hooks :
33
33
- id : isort
34
34
35
35
# Autoformat: Python code
36
36
- repo : https://github.com/psf/black
37
- rev : 23 .10.1
37
+ rev : 24 .10.0
38
38
hooks :
39
39
- id : black
40
40
exclude : " contrib\/ template\/ .*"
41
41
42
42
# Autoformat: markdown, yaml
43
43
- repo : https://github.com/pre-commit/mirrors-prettier
44
- rev : v3 .0.3
44
+ rev : v4 .0.0-alpha.8
45
45
hooks :
46
46
- id : prettier
47
47
48
48
# Misc...
49
49
- repo : https://github.com/pre-commit/pre-commit-hooks
50
- rev : v4.5 .0
50
+ rev : v5.0 .0
51
51
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
52
52
hooks :
53
53
# Autoformat: Makes sure files end in a newline and only a newline.
65
65
66
66
# Lint: Python code
67
67
- repo : https://github.com/PyCQA/flake8
68
- rev : " 6 .1.0 "
68
+ rev : " 7 .1.1 "
69
69
hooks :
70
70
- id : flake8
71
71
Original file line number Diff line number Diff line change 4
4
See https://jupyter-server-proxy.readthedocs.io/en/latest/server-process.html
5
5
for more information.
6
6
"""
7
+
7
8
import os
8
9
import shutil
9
10
Original file line number Diff line number Diff line change 1
1
"""Reusable test fixtures for ``jupyter_server_proxy``."""
2
+
2
3
import os
3
4
import shutil
4
5
import socket
Original file line number Diff line number Diff line change 2
2
Simple webserver to respond with an echo of the sent request. It can listen to
3
3
either a tcp port or a unix socket.
4
4
"""
5
+
5
6
import argparse
6
7
import socket
7
8
import sys
You can’t perform that action at this time.
0 commit comments