Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Oct 27, 2024
1 parent 27f8374 commit cdba22f
Show file tree
Hide file tree
Showing 24 changed files with 32 additions and 29 deletions.
31 changes: 31 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,37 @@
.. towncrier release notes start
24.3 (2024-10-26)
=================

Deprecations and Removals
-------------------------

- Deprecate wheel filenames that are not compliant with :pep:`440`. (`#12918 <https://github.com/pypa/pip/issues/12918>`_)

Features
--------

- Detect recursively referencing requirements files and help users identify
the source. (`#12653 <https://github.com/pypa/pip/issues/12653>`_)
- Support for :pep:`730` iOS wheels. (`#12961 <https://github.com/pypa/pip/issues/12961>`_)

Bug Fixes
---------

- Display a better error message when an already installed package has an invalid requirement. (`#12953 <https://github.com/pypa/pip/issues/12953>`_)
- Ignore ``PIP_TARGET`` and ``pip.conf`` ``global.target`` when preparing a build environment. (`#8438 <https://github.com/pypa/pip/issues/8438>`_)
- Restore support for macOS 10.12 and older (via truststore). (`#12901 <https://github.com/pypa/pip/issues/12901>`_)
- Allow installing pip in editable mode in a virtual environment on Windows. (`#12666 <https://github.com/pypa/pip/issues/12666>`_)

Vendored Libraries
------------------

- Upgrade certifi to 2024.8.30
- Upgrade distlib to 0.3.9
- Upgrade truststore to 0.10.0
- Upgrade urllib3 to 1.26.20

24.2 (2024-07-28)
=================

Expand Down
Empty file.
2 changes: 0 additions & 2 deletions news/12653.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12678.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12893.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12894.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12895.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12918.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12939.trivial.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/12961.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12964.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12974.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/13012.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/13013.trivial.rst

This file was deleted.

Empty file.
10 changes: 0 additions & 10 deletions news/8438.bugfix.rst

This file was deleted.

Empty file.
Empty file.
1 change: 0 additions & 1 deletion news/certifi.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/distlib.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/truststore.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/urllib3.vendor.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__ = "24.3.dev0"
__version__ = "24.3"


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

0 comments on commit cdba22f

Please sign in to comment.