Skip to content

Commit 38e4015

Browse files
author
Alan Fleming
committed
Rename entrypoint from 'ipylab-python-backend' to 'ipylab_backend' (hypens are not allowed).
1 parent aa8d339 commit 38e4015

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ repos:
2727
- id: requirements-txt-fixer
2828
- id: check-builtin-literals
2929
- repo: https://github.com/python-jsonschema/check-jsonschema
30-
rev: 0.27.3
30+
rev: 0.28.0
3131
hooks:
3232
- id: check-github-workflows
3333
- repo: https://github.com/ComPWA/mirrors-taplo
3434
rev: 'v0.8.1'
3535
hooks:
3636
- id: taplo
3737
- repo: https://github.com/astral-sh/ruff-pre-commit
38-
rev: v0.1.9
38+
rev: v0.3.4
3939
hooks:
4040
- id: ruff
4141
types_or: [python, jupyter]
@@ -50,11 +50,11 @@ repos:
5050
- tomli
5151

5252
- repo: https://github.com/pre-commit/mirrors-prettier
53-
rev: 'v3.1.0'
53+
rev: 'v4.0.0-alpha.8'
5454
hooks:
5555
- id: prettier
5656
types_or: [yaml, markdown, html, css, scss, javascript, json]
5757
- repo: https://github.com/kynan/nbstripout
58-
rev: '0.6.1'
58+
rev: '0.7.1'
5959
hooks:
6060
- id: nbstripout

ipylab/jupyterfrontend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _init_python_backend(self) -> str:
8989
from ipylab.hookspecs import pm
9090

9191
try:
92-
count = pm.load_setuptools_entrypoints("ipylab-python-backend")
92+
count = pm.load_setuptools_entrypoints("ipylab_backend")
9393
self.log.info(f"Ipylab python backend found {count} plugin entry points.")
9494
except Exception as e:
9595
self.log.error("An exception occurred when loading plugins")

0 commit comments

Comments
 (0)