Skip to content

Commit 2071a88

Browse files
authored
Fix typings and update project urls (#1214)
1 parent eddd3e6 commit 2071a88

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

ipykernel/zmqshell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ def init_magics(self):
612612
"""Initialize magics."""
613613
super().init_magics()
614614
self.register_magics(KernelMagics)
615-
self.magics_manager.register_alias("ed", "edit") # type:ignore[union-attr]
615+
self.magics_manager.register_alias("ed", "edit")
616616

617617
def init_virtualenv(self):
618618
"""Initialize virtual environment."""

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ classifiers = [
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
2020
]
21-
urls = {Homepage = "https://ipython.org"}
2221
requires-python = ">=3.8"
2322
dependencies = [
2423
"debugpy>=1.6.5",
@@ -37,6 +36,13 @@ dependencies = [
3736
"packaging",
3837
]
3938

39+
[project.urls]
40+
Homepage = "https://ipython.org"
41+
Documentation = "https://ipykernel.readthedocs.io"
42+
Funding = "https://numfocus.org/donate"
43+
Source = "https://github.com/ipython/ipykernel"
44+
Tracker = "https://github.com/ipython/ipykernel/issues"
45+
4046
[project.optional-dependencies]
4147
docs = [
4248
"sphinx",

0 commit comments

Comments
 (0)