...
 
Commits (4)
    https://gitcode.net/awesome-mirrors/pypa/pip/-/commit/3fe7e54fceac7a03bcb88ce26cfd0937acfe5e40 Bump for release 2023-04-26T10:18:28+01:00 Paul Moore p.f.moore@gmail.com https://gitcode.net/awesome-mirrors/pypa/pip/-/commit/cd918f27f9d1b1349ec9b87dc4750417361956f5 Bump for development 2023-04-26T10:18:28+01:00 Paul Moore p.f.moore@gmail.com https://gitcode.net/awesome-mirrors/pypa/pip/-/commit/d9ec9e3eb8616bd206dda5a2749b9d1ccefdd2b5 Merge pull request #12000 from pfmoore/release/23.1.2 2023-04-26T10:22:17+01:00 Paul Moore p.f.moore@gmail.com Release/23.1.2 https://gitcode.net/awesome-mirrors/pypa/pip/-/commit/28f77d7618d0acbae3242c50fc1e475cbafebd1d Include nox install instructions in Getting Started dev doc (#12001) 2023-04-26T12:52:14-06:00 Awit (Ah-Wit) Ghirmai 107564270+awitghirmai@users.noreply.github.com
......@@ -9,6 +9,15 @@
.. towncrier release notes start
23.1.2 (2023-04-26)
===================
Vendored Libraries
------------------
- Upgrade setuptools to 67.7.2
23.1.1 (2023-04-22)
===================
......
......@@ -27,23 +27,35 @@ Development Environment
pip is a command line application written in Python. For developing pip,
you should `install Python`_ on your computer.
For developing pip, you need to install :pypi:`nox`. Often, you can run
``python -m pip install nox`` to install and use it.
For developing pip, you need to install :pypi:`nox`. The full development setup would then be:
.. tab:: Unix/macOS
.. code-block:: shell
python -m venv .venv
source .venv/bin/activate
python -m pip install nox
.. tab:: Windows
.. code-block:: shell
py -m venv .venv
.venv\Scripts\activate
py -m pip install nox
Running pip From Source Tree
============================
To run the pip executable from your source tree during development, install pip
locally using editable installation (inside a virtualenv).
You can then invoke your local source tree pip normally.
You can then invoke your local source tree pip normally (be sure virtualenv is active).
.. tab:: Unix/macOS
.. code-block:: shell
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .
python -m pip --version
......@@ -51,8 +63,6 @@ You can then invoke your local source tree pip normally.
.. code-block:: shell
py -m venv .venv
.venv\Scripts\activate
py -m pip install -e .
py -m pip --version
......
Added seperate instructions for installing ``nox`` in the ``docs/development/getting-started.rst`` doc. and slight update
to the below ``Running pip From Source Tree`` section.
Upgrade setuptools to 67.7.2