From ae7cc40870eef557bfd25d2b45e066480c8c3cdd Mon Sep 17 00:00:00 2001 From: wim glenn Date: Tue, 12 Dec 2023 21:56:02 -0600 Subject: [PATCH] move links from fork to pypa --- CONTRIBUTING.md | 2 +- docs/development/workflow.md | 2 +- docs/index.md | 2 +- src/installer/scripts.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0e08bc38..47464065 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ While working on implementing the feature, please go ahead and file a pull request. Filing a pull request early allows for getting feedback as early as possible. -[issue tracker]: https://github.com/pradyunsg/installer/issues +[issue tracker]: https://github.com/pypa/installer/issues ## Pull Requests diff --git a/docs/development/workflow.md b/docs/development/workflow.md index 0c4f9e76..9b496f0f 100644 --- a/docs/development/workflow.md +++ b/docs/development/workflow.md @@ -37,7 +37,7 @@ To work on this project, you need to have git 2.17+ and Python 3.7+. - Clone this project using git: ```sh - git clone https://github.com/pradyunsg/installer.git + git clone https://github.com/pypa/installer.git cd installer ``` diff --git a/docs/index.md b/docs/index.md index 7846513e..c3edf859 100644 --- a/docs/index.md +++ b/docs/index.md @@ -38,7 +38,7 @@ cli/* development/index changelog license -GitHub +GitHub PyPI ``` diff --git a/src/installer/scripts.py b/src/installer/scripts.py index 77a01cbe..d18060bd 100644 --- a/src/installer/scripts.py +++ b/src/installer/scripts.py @@ -69,7 +69,7 @@ def _build_shebang(executable: str, forlauncher: bool) -> bytes: # and platform-dependent, so we use a clever hack to generate a script to # run in ``/bin/sh`` that should work on all reasonably modern platforms. # Read the following message to understand how the hack works: - # https://github.com/pradyunsg/installer/pull/4#issuecomment-623668717 + # https://github.com/pypa/installer/pull/4#issuecomment-623668717 quoted = shlex.quote(executable).encode("utf-8") # I don't understand a lick what this is trying to do.