Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Feb 17, 2023
1 parent 9a0d930 commit 3817aef
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
19 changes: 19 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,25 @@
.. towncrier release notes start
23.0.1 (2023-02-17)
===================

Features
--------

- Ignore PIP_REQUIRE_VIRTUALENV for ``pip index`` (`#11671 <https://github.com/pypa/pip/issues/11671>`_)
- Implement ``--break-system-packages`` to permit installing packages into
``EXTERNALLY-MANAGED`` Python installations. (`#11780 <https://github.com/pypa/pip/issues/11780>`_)

Bug Fixes
---------

- Improve handling of isolated build environments on platforms that
customize the Python's installation schemes, such as Debian and
Homebrew. (`#11740 <https://github.com/pypa/pip/issues/11740>`_)
- Do not crash in presence of misformatted hash field in ``direct_url.json``. (`#11773 <https://github.com/pypa/pip/issues/11773>`_)


23.0 (2023-01-30)
=================

Expand Down
1 change: 0 additions & 1 deletion news/11671.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/11740.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/11773.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11780.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/pip/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import List, Optional

__version__ = "23.0"
__version__ = "23.0.1"


def main(args: Optional[List[str]] = None) -> int:
Expand Down

0 comments on commit 3817aef

Please sign in to comment.