From 6acccd13dc4e5a630b8cd95061f2bc352e4dbac6 Mon Sep 17 00:00:00 2001 From: Dheeraj <44266862+dheerajreal@users.noreply.github.com> Date: Wed, 13 Dec 2023 05:00:57 +0530 Subject: [PATCH] Update `project_urls` in `setup.py` (#16622) Made the following changes to `project_urls` in `setup.py`: - removed link to "News" - added link to "Changelog" - added link to "Issues" --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e3ebe9dd62ec..140020b18bc4 100644 --- a/setup.py +++ b/setup.py @@ -234,8 +234,9 @@ def run(self): python_requires=">=3.8", include_package_data=True, project_urls={ - "News": "https://mypy-lang.org/news.html", "Documentation": "https://mypy.readthedocs.io/en/stable/index.html", "Repository": "https://github.com/python/mypy", + "Changelog": "https://github.com/python/mypy/blob/master/CHANGELOG.md", + "Issues": "https://github.com/python/mypy/issues", }, )