Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/24.3 #13044

Merged
merged 3 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Anthony Sottile
Antoine Musso
Anton Ovchinnikov
Anton Patrushev
Anton Zelenov
Antonio Alvarado Hernandez
Antony Lee
Antti Kaihola
Expand Down Expand Up @@ -225,6 +226,7 @@ Diego Ramirez
DiegoCaraballo
Dimitri Merejkowsky
Dimitri Papadopoulos
Dimitri Papadopoulos Orfanos
Dirk Stolle
Dmitry Gladkov
Dmitry Volodin
Expand Down Expand Up @@ -690,6 +692,7 @@ snook92
socketubs
Sorin Sbarnea
Srinivas Nyayapati
Srishti Hegde
Stavros Korokithakis
Stefan Scherfke
Stefano Rivera
Expand Down
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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

even though the problem was not in pip code, but in truststore, maybe it is at least worth mentioning that pip 24.3 now works again on macOS <= 10.13 (which was broken in pip 24.2 release).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, done.

---------

- 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__ = "25.0.dev0"
sbidoul marked this conversation as resolved.
Show resolved Hide resolved


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