Skip to content

Commit 586cbb3

Browse files
authored
Use ruff format (#992)
* use ruff format * fix type * fix types
1 parent 43d008f commit 586cbb3

26 files changed

+216
-256
lines changed

.pre-commit-config.yaml

+4-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ci:
44

55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.4.0
7+
rev: v4.5.0
88
hooks:
99
- id: check-case-conflict
1010
- id: check-ast
@@ -42,11 +42,6 @@ repos:
4242
- id: blacken-docs
4343
additional_dependencies: [black==23.7.0]
4444

45-
- repo: https://github.com/psf/black-pre-commit-mirror
46-
rev: 23.9.1
47-
hooks:
48-
- id: black
49-
5045
- repo: https://github.com/codespell-project/codespell
5146
rev: "v2.2.6"
5247
hooks:
@@ -61,13 +56,14 @@ repos:
6156
- id: rst-inline-touching-normal
6257

6358
- repo: https://github.com/astral-sh/ruff-pre-commit
64-
rev: v0.0.292
59+
rev: v0.1.3
6560
hooks:
6661
- id: ruff
6762
args: ["--fix", "--show-fixes"]
63+
- id: ruff-format
6864

6965
- repo: https://github.com/scientific-python/cookie
70-
rev: "2023.09.21"
66+
rev: "2023.10.27"
7167
hooks:
7268
- id: sp-repo-review
7369
additional_dependencies: ["repo-review[cli]"]

docs/conf.py

+33-33
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3333
# ones.
3434
extensions = [
35-
'myst_parser',
36-
'sphinx.ext.autodoc',
37-
'sphinx.ext.intersphinx',
38-
'sphinx.ext.napoleon',
39-
'sphinxcontrib_github_alt',
35+
"myst_parser",
36+
"sphinx.ext.autodoc",
37+
"sphinx.ext.intersphinx",
38+
"sphinx.ext.napoleon",
39+
"sphinxcontrib_github_alt",
4040
"sphinx_autodoc_typehints",
4141
]
4242

@@ -60,23 +60,23 @@ def filter(self, record: pylogging.LogRecord) -> bool:
6060
myst_enable_extensions = ["html_image"]
6161

6262
# Add any paths that contain templates here, relative to this directory.
63-
templates_path = ['_templates']
63+
templates_path = ["_templates"]
6464

6565
# The suffix(es) of source filenames.
6666
# You can specify multiple suffix as a list of string:
6767
# source_suffix = ['.rst', '.md']
68-
source_suffix = '.rst'
68+
source_suffix = ".rst"
6969

7070
# The encoding of source files.
7171
# source_encoding = 'utf-8-sig'
7272

7373
# The master toctree document.
74-
master_doc = 'index'
74+
master_doc = "index"
7575

7676
# General information about the project.
77-
project = 'jupyter_client'
78-
copyright = '2015, Jupyter Development Team'
79-
author = 'Jupyter Development Team'
77+
project = "jupyter_client"
78+
copyright = "2015, Jupyter Development Team"
79+
author = "Jupyter Development Team"
8080

8181
github_project_url = "https://github.com/jupyter/jupyter_client"
8282

@@ -86,14 +86,14 @@ def filter(self, record: pylogging.LogRecord) -> bool:
8686
#
8787
version_ns: dict = {}
8888
here = os.path.dirname(__file__)
89-
version_py = os.path.join(here, os.pardir, 'jupyter_client', '_version.py')
89+
version_py = os.path.join(here, os.pardir, "jupyter_client", "_version.py")
9090
with open(version_py) as f:
91-
exec(compile(f.read(), version_py, 'exec'), version_ns) # noqa
91+
exec(compile(f.read(), version_py, "exec"), version_ns) # noqa
9292

9393
# The short X.Y version.
94-
version = '%i.%i' % version_ns['version_info'][:2]
94+
version = "%i.%i" % version_ns["version_info"][:2]
9595
# The full version, including alpha/beta/rc tags.
96-
release = version_ns['__version__']
96+
release = version_ns["__version__"]
9797

9898
# The language for content autogenerated by Sphinx. Refer to documentation
9999
# for a list of supported languages.
@@ -110,7 +110,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
110110

111111
# List of patterns, relative to source directory, that match files and
112112
# directories to ignore when looking for source files.
113-
exclude_patterns = ['_build']
113+
exclude_patterns = ["_build"]
114114

115115
# The reST default role (used for this markup: `text`) to use for all
116116
# documents.
@@ -128,7 +128,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
128128
# show_authors = False
129129

130130
# The name of the Pygments (syntax highlighting) style to use.
131-
pygments_style = 'sphinx'
131+
pygments_style = "sphinx"
132132

133133
# A list of ignored prefixes for module index sorting.
134134
# modindex_common_prefix = []
@@ -144,12 +144,12 @@ def filter(self, record: pylogging.LogRecord) -> bool:
144144

145145
# The theme to use for HTML and HTML Help pages. See the documentation for
146146
# a list of builtin themes.
147-
html_theme = 'pydata_sphinx_theme'
147+
html_theme = "pydata_sphinx_theme"
148148

149149
# Theme options are theme-specific and customize the look and feel of a theme
150150
# further. For a list of options available for each theme, see the
151151
# documentation.
152-
# html_theme_options = {}
152+
html_theme_options = {"navigation_with_keys": False}
153153

154154
# Add any paths that contain custom themes here, relative to this directory.
155155
# html_theme_path = []
@@ -236,7 +236,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
236236
# html_search_scorer = 'scorer.js'
237237

238238
# Output file base name for HTML help builder.
239-
htmlhelp_basename = 'jupyter_clientdoc'
239+
htmlhelp_basename = "jupyter_clientdoc"
240240

241241
# -- Options for LaTeX output ---------------------------------------------
242242

@@ -257,10 +257,10 @@ def filter(self, record: pylogging.LogRecord) -> bool:
257257
latex_documents = [
258258
(
259259
master_doc,
260-
'jupyter_client.tex',
261-
'jupyter\\_client Documentation',
262-
'Jupyter Development Team',
263-
'manual',
260+
"jupyter_client.tex",
261+
"jupyter\\_client Documentation",
262+
"Jupyter Development Team",
263+
"manual",
264264
),
265265
]
266266

@@ -289,7 +289,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
289289

290290
# One entry per manual page. List of tuples
291291
# (source start file, name, description, authors, manual section).
292-
man_pages = [(master_doc, 'jupyter_client', 'jupyter_client Documentation', [author], 1)]
292+
man_pages = [(master_doc, "jupyter_client", "jupyter_client Documentation", [author], 1)]
293293

294294
# If true, show URL addresses after external links.
295295
# man_show_urls = False
@@ -303,12 +303,12 @@ def filter(self, record: pylogging.LogRecord) -> bool:
303303
texinfo_documents = [
304304
(
305305
master_doc,
306-
'jupyter_client',
307-
'jupyter_client Documentation',
306+
"jupyter_client",
307+
"jupyter_client Documentation",
308308
author,
309-
'jupyter_client',
310-
'One line description of project.',
311-
'Miscellaneous',
309+
"jupyter_client",
310+
"One line description of project.",
311+
"Miscellaneous",
312312
),
313313
]
314314

@@ -326,10 +326,10 @@ def filter(self, record: pylogging.LogRecord) -> bool:
326326

327327

328328
# Example configuration for intersphinx: refer to the Python standard library.
329-
intersphinx_mapping = {'ipython': ('http://ipython.readthedocs.io/en/stable/', None)}
329+
intersphinx_mapping = {"ipython": ("http://ipython.readthedocs.io/en/stable/", None)}
330330

331331

332332
def setup(app: object) -> None:
333333
HERE = osp.abspath(osp.dirname(__file__))
334-
dest = osp.join(HERE, 'changelog.md')
335-
shutil.copy(osp.join(HERE, '..', 'CHANGELOG.md'), dest)
334+
dest = osp.join(HERE, "changelog.md")
335+
shutil.copy(osp.join(HERE, "..", "CHANGELOG.md"), dest)

jupyter_client/_version.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
__version__ = "8.5.0"
66

77
# Build up version_info tuple for backwards compatibility
8-
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'
8+
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"
99
match = re.match(pattern, __version__)
1010
if match:
11-
parts: List[Union[int, str]] = [int(match[part]) for part in ['major', 'minor', 'patch']]
12-
if match['rest']:
13-
parts.append(match['rest'])
11+
parts: List[Union[int, str]] = [int(match[part]) for part in ["major", "minor", "patch"]]
12+
if match["rest"]:
13+
parts.append(match["rest"])
1414
else:
1515
parts = []
1616
version_info = tuple(parts)

jupyter_client/channels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def __init__(self, socket: zmq.asyncio.Socket, session: Session, loop: t.Any = N
290290
Unused here, for other implementations
291291
"""
292292
if not isinstance(socket, zmq.asyncio.Socket):
293-
msg = 'Socket must be asyncio' # type:ignore[unreachable]
293+
msg = "Socket must be asyncio" # type:ignore[unreachable]
294294
raise ValueError(msg)
295295
super().__init__(socket, session)
296296

jupyter_client/consoleapp.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ class JupyterConsoleApp(ConnectionFileMixin):
9494

9595
name: t.Union[str, Unicode] = "jupyter-console-mixin"
9696

97-
description: t.Union[
98-
str, Unicode
99-
] = """
97+
description: t.Union[str, Unicode] = """
10098
The Jupyter Console Mixin.
10199
102100
This class contains the common portions of console client (QtConsole,

jupyter_client/jsonutil.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ def json_default(obj: Any) -> Any:
108108
"""default function for packing objects in JSON."""
109109
if isinstance(obj, datetime):
110110
obj = _ensure_tzinfo(obj)
111-
return obj.isoformat().replace('+00:00', 'Z')
111+
return obj.isoformat().replace("+00:00", "Z")
112112

113113
if isinstance(obj, bytes):
114-
return b2a_base64(obj, newline=False).decode('ascii')
114+
return b2a_base64(obj, newline=False).decode("ascii")
115115

116116
if isinstance(obj, Iterable):
117117
return list(obj)
@@ -157,10 +157,10 @@ def json_clean(obj: Any) -> Any:
157157
if isinstance(obj, bytes):
158158
# unanmbiguous binary data is base64-encoded
159159
# (this probably should have happened upstream)
160-
return b2a_base64(obj, newline=False).decode('ascii')
160+
return b2a_base64(obj, newline=False).decode("ascii")
161161

162162
if isinstance(obj, container_to_list) or (
163-
hasattr(obj, '__iter__') and hasattr(obj, next_attr_name)
163+
hasattr(obj, "__iter__") and hasattr(obj, next_attr_name)
164164
):
165165
obj = list(obj)
166166

@@ -175,8 +175,8 @@ def json_clean(obj: Any) -> Any:
175175
nkeys_collapsed = len(set(map(str, obj)))
176176
if nkeys != nkeys_collapsed:
177177
msg = (
178-
'dict cannot be safely converted to JSON: '
179-
'key collision would lead to dropped values'
178+
"dict cannot be safely converted to JSON: "
179+
"key collision would lead to dropped values"
180180
)
181181
raise ValueError(msg)
182182
# If all OK, proceed by making the new dict that will be json-safe

jupyter_client/kernelspec.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def _get_kernel_spec_by_name(self, kernel_name: str, resource_dir: str) -> Kerne
241241
pass
242242
else:
243243
if resource_dir == RESOURCES:
244-
kdict = get_kernel_dict() # type:ignore[no-untyped-call]
244+
kdict = get_kernel_dict()
245245
kspec = self.kernel_spec_class(resource_dir=resource_dir, **kdict)
246246
if not kspec:
247247
kspec = self.kernel_spec_class.from_resource_dir(resource_dir)
@@ -415,7 +415,7 @@ def install_native_kernel_spec(self, user: bool = False) -> None:
415415
)
416416
from ipykernel.kernelspec import install
417417

418-
install(self, user=user) # type:ignore[no-untyped-call]
418+
install(self, user=user)
419419

420420

421421
def find_kernel_specs() -> dict[str, str]:

jupyter_client/kernelspecapp.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,7 @@ def start(self) -> None: # pragma: no cover
266266
print("ipykernel not available, can't install its spec.", file=sys.stderr)
267267
self.exit(1)
268268
try:
269-
kernelspec.install(
270-
self.kernel_spec_manager, user=self.user
271-
) # type:ignore[no-untyped-call]
269+
kernelspec.install(self.kernel_spec_manager, user=self.user)
272270
except OSError as e:
273271
if e.errno == errno.EACCES:
274272
print(e, file=sys.stderr)

jupyter_client/manager.py

+15-37
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class _ShutdownStatus(Enum):
5555
SigkillRequest = "SigkillRequest"
5656

5757

58-
F = t.TypeVar('F', bound=t.Callable[..., t.Any])
58+
F = t.TypeVar("F", bound=t.Callable[..., t.Any])
5959

6060

6161
def _get_future() -> t.Union[Future, CFuture]:
@@ -281,7 +281,7 @@ def update_env(self, *, env: t.Dict[str, str]) -> None:
281281
282282
.. version-added: 8.5
283283
"""
284-
self._launch_args['env'].update(env)
284+
self._launch_args["env"].update(env)
285285

286286
def format_kernel_cmd(self, extra_arguments: t.Optional[t.List[str]] = None) -> t.List[str]:
287287
"""Replace templated args (e.g. {connection_file})"""
@@ -369,7 +369,7 @@ async def _async_pre_start_kernel(
369369
and launching the kernel (e.g. Popen kwargs).
370370
"""
371371
self.shutting_down = False
372-
self.kernel_id = self.kernel_id or kw.pop('kernel_id', str(uuid.uuid4()))
372+
self.kernel_id = self.kernel_id or kw.pop("kernel_id", str(uuid.uuid4()))
373373
# save kwargs for use in restart
374374
self._launch_args = kw.copy()
375375
if self.provisioner is None: # will not be None on restarts
@@ -379,7 +379,7 @@ async def _async_pre_start_kernel(
379379
parent=self,
380380
)
381381
kw = await self.provisioner.pre_launch(**kw)
382-
kernel_cmd = kw.pop('cmd')
382+
kernel_cmd = kw.pop("cmd")
383383
return kernel_cmd, kw
384384

385385
pre_start_kernel = run_sync(_async_pre_start_kernel)
@@ -715,41 +715,19 @@ def client( # type:ignore[override]
715715
return super().client(**kwargs) # type:ignore[return-value]
716716

717717
_launch_kernel = KernelManager._async_launch_kernel # type:ignore[assignment]
718-
start_kernel: t.Callable[
719-
..., t.Awaitable
720-
] = KernelManager._async_start_kernel # type:ignore[assignment]
721-
pre_start_kernel: t.Callable[
722-
..., t.Awaitable
723-
] = KernelManager._async_pre_start_kernel # type:ignore[assignment]
724-
post_start_kernel: t.Callable[
725-
..., t.Awaitable
726-
] = KernelManager._async_post_start_kernel # type:ignore[assignment]
727-
request_shutdown: t.Callable[
728-
..., t.Awaitable
729-
] = KernelManager._async_request_shutdown # type:ignore[assignment]
730-
finish_shutdown: t.Callable[
731-
..., t.Awaitable
732-
] = KernelManager._async_finish_shutdown # type:ignore[assignment]
733-
cleanup_resources: t.Callable[
734-
..., t.Awaitable
735-
] = KernelManager._async_cleanup_resources # type:ignore[assignment]
736-
shutdown_kernel: t.Callable[
737-
..., t.Awaitable
738-
] = KernelManager._async_shutdown_kernel # type:ignore[assignment]
739-
restart_kernel: t.Callable[
740-
..., t.Awaitable
741-
] = KernelManager._async_restart_kernel # type:ignore[assignment]
718+
start_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_start_kernel # type:ignore[assignment]
719+
pre_start_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_pre_start_kernel # type:ignore[assignment]
720+
post_start_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_post_start_kernel # type:ignore[assignment]
721+
request_shutdown: t.Callable[..., t.Awaitable] = KernelManager._async_request_shutdown # type:ignore[assignment]
722+
finish_shutdown: t.Callable[..., t.Awaitable] = KernelManager._async_finish_shutdown # type:ignore[assignment]
723+
cleanup_resources: t.Callable[..., t.Awaitable] = KernelManager._async_cleanup_resources # type:ignore[assignment]
724+
shutdown_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_shutdown_kernel # type:ignore[assignment]
725+
restart_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_restart_kernel # type:ignore[assignment]
742726
_send_kernel_sigterm = KernelManager._async_send_kernel_sigterm # type:ignore[assignment]
743727
_kill_kernel = KernelManager._async_kill_kernel # type:ignore[assignment]
744-
interrupt_kernel: t.Callable[
745-
..., t.Awaitable
746-
] = KernelManager._async_interrupt_kernel # type:ignore[assignment]
747-
signal_kernel: t.Callable[
748-
..., t.Awaitable
749-
] = KernelManager._async_signal_kernel # type:ignore[assignment]
750-
is_alive: t.Callable[
751-
..., t.Awaitable
752-
] = KernelManager._async_is_alive # type:ignore[assignment]
728+
interrupt_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_interrupt_kernel # type:ignore[assignment]
729+
signal_kernel: t.Callable[..., t.Awaitable] = KernelManager._async_signal_kernel # type:ignore[assignment]
730+
is_alive: t.Callable[..., t.Awaitable] = KernelManager._async_is_alive # type:ignore[assignment]
753731

754732

755733
KernelManagerABC.register(KernelManager)

0 commit comments

Comments
 (0)