From 981f67b9a7e213401448273340a61fda740e984e Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Tue, 27 Sep 2022 17:03:06 +0100 Subject: [PATCH 1/2] Add release notes link to PyPI page --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 798ad2133..25be40f1b 100644 --- a/setup.py +++ b/setup.py @@ -205,6 +205,9 @@ def _download_and_extract_local_driver( long_description=Path("README.md").read_text(encoding="utf-8"), long_description_content_type="text/markdown", url="https://github.com/Microsoft/playwright-python", + project_urls={ + "Release notes": "https://playwright.dev/python/docs/release-notes", + }, packages=["playwright"], include_package_data=True, install_requires=[ From 374e07b46ce98a7d4e32f10c98ebb88a164e5a6c Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Wed, 28 Sep 2022 12:16:50 -0700 Subject: [PATCH 2/2] Update setup.py Co-authored-by: Max Schmitt --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 25be40f1b..7ad0be310 100644 --- a/setup.py +++ b/setup.py @@ -206,7 +206,7 @@ def _download_and_extract_local_driver( long_description_content_type="text/markdown", url="https://github.com/Microsoft/playwright-python", project_urls={ - "Release notes": "https://playwright.dev/python/docs/release-notes", + "Release notes": "https://github.com/microsoft/playwright-python/releases", }, packages=["playwright"], include_package_data=True,