Skip to content

Commit

Permalink
Merge pull request #9496 from pfmoore/release_21.0
Browse files Browse the repository at this point in the history
Release 21.0
  • Loading branch information
pfmoore authored Jan 23, 2021
2 parents a27d06e + c1382e9 commit 69cfa8e
Show file tree
Hide file tree
Showing 50 changed files with 49 additions and 23 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ Nick Timkovich
Nicolas Bock
Nicole Harris
Nikhil Benesch
Nikita Chepanov
Nikolay Korolev
Nitesh Sharma
Noah
Expand Down Expand Up @@ -466,6 +467,7 @@ Remi Rampin
Rene Dudfield
Riccardo Magliocchetti
Richard Jones
Richard Si
Ricky Ng-Adam
RobberPhex
Robert Collins
Expand Down
46 changes: 46 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,49 @@
21.0 (2021-01-23)
=================

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

- Drop support for Python 2. (`#6148 <https://github.com/pypa/pip/issues/6148>`_)
- Remove support for legacy wheel cache entries that were created with pip
versions older than 20.0. (`#7502 <https://github.com/pypa/pip/issues/7502>`_)
- Remove support for VCS pseudo URLs editable requirements. It was emitting
deprecation warning since version 20.0. (`#7554 <https://github.com/pypa/pip/issues/7554>`_)
- Modernise the codebase after Python 2. (`#8802 <https://github.com/pypa/pip/issues/8802>`_)
- Drop support for Python 3.5. (`#9189 <https://github.com/pypa/pip/issues/9189>`_)
- Remove the VCS export feature that was used only with editable VCS
requirements and had correctness issues. (`#9338 <https://github.com/pypa/pip/issues/9338>`_)

Features
--------

- Add ``--ignore-requires-python`` support to pip download. (`#1884 <https://github.com/pypa/pip/issues/1884>`_)
- New resolver: Error message shown when a wheel contains inconsistent metadata
is made more helpful by including both values from the file name and internal
metadata. (`#9186 <https://github.com/pypa/pip/issues/9186>`_)

Bug Fixes
---------

- Fix a regression that made ``pip wheel`` do a VCS export instead of a VCS clone
for editable requirements. This broke VCS requirements that need the VCS
information to build correctly. (`#9273 <https://github.com/pypa/pip/issues/9273>`_)
- Fix ``pip download`` of editable VCS requirements that need VCS information
to build correctly. (`#9337 <https://github.com/pypa/pip/issues/9337>`_)

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

- Upgrade msgpack to 1.0.2.
- Upgrade requests to 2.25.1.

Improved Documentation
----------------------

- Render the unreleased pip version change notes on the news page in docs. (`#9172 <https://github.com/pypa/pip/issues/9172>`_)
- Fix broken email link in docs feedback banners. (`#9343 <https://github.com/pypa/pip/issues/9343>`_)


.. note
You should *NOT* be adding new change log entries to this file, this
Expand Down
Empty file.
Empty file.
1 change: 0 additions & 1 deletion news/1884.feature.rst

This file was deleted.

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 0 additions & 1 deletion news/6148.removal.rst

This file was deleted.

Empty file.
2 changes: 0 additions & 2 deletions news/7502.removal.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/7554.removal.rst

This file was deleted.

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 0 additions & 1 deletion news/8802.removal.rst

This file was deleted.

Empty file.
1 change: 0 additions & 1 deletion news/9172.doc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/9186.feature.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions news/9337.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/9338.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/9343.doc.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/requests.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
Expand Up @@ -4,7 +4,7 @@
from typing import List, Optional


__version__ = "21.0.dev0"
__version__ = "21.1.dev0"


def main(args=None):
Expand Down

0 comments on commit 69cfa8e

Please sign in to comment.