Skip to content

Commit

Permalink
Fix typings and update project urls (#1214)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Feb 25, 2024
1 parent eddd3e6 commit 2071a88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ipykernel/zmqshell.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ def init_magics(self):
"""Initialize magics."""
super().init_magics()
self.register_magics(KernelMagics)
self.magics_manager.register_alias("ed", "edit") # type:ignore[union-attr]
self.magics_manager.register_alias("ed", "edit")

def init_virtualenv(self):
"""Initialize virtual environment."""
Expand Down
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
urls = {Homepage = "https://ipython.org"}
requires-python = ">=3.8"
dependencies = [
"debugpy>=1.6.5",
Expand All @@ -37,6 +36,13 @@ dependencies = [
"packaging",
]

[project.urls]
Homepage = "https://ipython.org"
Documentation = "https://ipykernel.readthedocs.io"
Funding = "https://numfocus.org/donate"
Source = "https://github.com/ipython/ipykernel"
Tracker = "https://github.com/ipython/ipykernel/issues"

[project.optional-dependencies]
docs = [
"sphinx",
Expand Down

0 comments on commit 2071a88

Please sign in to comment.