diff --git a/NEWS.rst b/NEWS.rst index d440dce31..949065dfa 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -7,6 +7,126 @@ .. towncrier release notes start +20.0 (2020-01-21) +================= + +Process +------- + +- Switch to a dedicated CLI tool for vendoring dependencies. + +Deprecations and Removals +------------------------- + +- Remove wheel tag calculation from pip and use ``packaging.tags``. This + should provide more tags ordered better than in prior releases. (`#6908 `_) +- Deprecate setup.py-based builds that do not generate an ``.egg-info`` directory. (`#6998 `_) +- The pip>=20 wheel cache is not retro-compatible with previous versions. Until + pip 21.0, pip will continue to take advantage of existing legacy cache + entries. (`#7296 `_) +- Deprecate undocumented ``--skip-requirements-regex`` option. (`#7297 `_) +- Deprecate passing install-location-related options via ``--install-option``. (`#7309 `_) +- Use literal "abi3" for wheel tag on CPython 3.x, to align with PEP 384 + which only defines it for this platform. (`#7327 `_) +- Remove interpreter-specific major version tag e.g. ``cp3-none-any`` + from consideration. This behavior was not documented strictly, and this + tag in particular is `not useful `_. + Anyone with a use case can create an issue with pypa/packaging. (`#7355 `_) +- Wheel processing no longer permits wheels containing more than one top-level + .dist-info directory. (`#7487 `_) +- Support for the ``git+git@`` form of VCS requirement is being deprecated and + will be removed in pip 21.0. Switch to ``git+https://`` or + ``git+ssh://``. ``git+git://`` also works but its use is discouraged as it is + insecure. (`#7543 `_) + +Features +-------- + +- Default to doing a user install (as if ``--user`` was passed) when the main + site-packages directory is not writeable and user site-packages are enabled. (`#1668 `_) +- Warn if a path in PATH starts with tilde during ``pip install``. (`#6414 `_) +- Cache wheels built from Git requirements that are considered immutable, + because they point to a commit hash. (`#6640 `_) +- Add option ``--no-python-version-warning`` to silence warnings + related to deprecation of Python versions. (`#6673 `_) +- Cache wheels that ``pip wheel`` built locally, matching what + ``pip install`` does. This particularly helps performance in workflows where + ``pip wheel`` is used for `building before installing + `_. + Users desiring the original behavior can use ``pip wheel --no-cache-dir``. (`#6852 `_) +- Display CA information in ``pip debug``. (`#7146 `_) +- Show only the filename (instead of full URL), when downloading from PyPI. (`#7225 `_) +- Suggest a more robust command to upgrade pip itself to avoid confusion when the + current pip command is not available as ``pip``. (`#7376 `_) +- Define all old pip console script entrypoints to prevent import issues in + stale wrapper scripts. (`#7498 `_) +- The build step of ``pip wheel`` now builds all wheels to a cache first, + then copies them to the wheel directory all at once. + Before, it built them to a temporary direcory and moved + them to the wheel directory one by one. (`#7517 `_) +- Expand ``~`` prefix to user directory in path options, configs, and + environment variables. Values that may be either URL or path are not + currently supported, to avoid ambiguity: + + * ``--find-links`` + * ``--constraint``, ``-c`` + * ``--requirement``, ``-r`` + * ``--editable``, ``-e`` (`#980 `_) + +Bug Fixes +--------- + +- Correctly handle system site-packages, in virtual environments created with venv (PEP 405). (`#5702 `_, `#7155 `_) +- Fix case sensitive comparison of pip freeze when used with -r option. (`#5716 `_) +- Enforce PEP 508 requirement format in ``pyproject.toml`` + ``build-system.requires``. (`#6410 `_) +- Make ``ensure_dir()`` also ignore ``ENOTEMPTY`` as seen on Windows. (`#6426 `_) +- Fix building packages which specify ``backend-path`` in pyproject.toml. (`#6599 `_) +- Do not attempt to run ``setup.py clean`` after a ``pep517`` build error, + since a ``setup.py`` may not exist in that case. (`#6642 `_) +- Fix passwords being visible in the index-url in + "Downloading " message. (`#6783 `_) +- Change method from shutil.remove to shutil.rmtree in noxfile.py. (`#7191 `_) +- Skip running tests which require subversion, when svn isn't installed (`#7193 `_) +- Fix not sending client certificates when using ``--trusted-host``. (`#7207 `_) +- Make sure ``pip wheel`` never outputs pure python wheels with a + python implementation tag. Better fix/workaround for + `#3025 `_ by + using a per-implementation wheel cache instead of caching pure python + wheels with an implementation tag in their name. (`#7296 `_) +- Include ``subdirectory`` URL fragments in cache keys. (`#7333 `_) +- Fix typo in warning message when any of ``--build-option``, ``--global-option`` + and ``--install-option`` is used in requirements.txt (`#7340 `_) +- Fix the logging of cached HTTP response shown as downloading. (`#7393 `_) +- Effectively disable the wheel cache when it is not writable, as is the + case with the http cache. (`#7488 `_) +- Correctly handle relative cache directory provided via --cache-dir. (`#7541 `_) + +Vendored Libraries +------------------ + +- Upgrade CacheControl to 0.12.5 +- Upgrade certifi to 2019.9.11 +- Upgrade colorama to 0.4.1 +- Upgrade distlib to 0.2.9.post0 +- Upgrade ipaddress to 1.0.22 +- Update packaging to 20.0. +- Upgrade pkg_resources (via setuptools) to 44.0.0 +- Upgrade pyparsing to 2.4.2 +- Upgrade six to 1.12.0 +- Upgrade urllib3 to 1.25.6 + +Improved Documentation +---------------------- + +- Document that "coding: utf-8" is supported in requirements.txt (`#7182 `_) +- Explain how to get pip's source code in `Getting Started `_ (`#7197 `_) +- Describe how basic authentication credentials in URLs work. (`#7201 `_) +- Add more clear installation instructions (`#7222 `_) +- Fix documentation links for index options (`#7347 `_) +- Better document the requirements file format (`#7385 `_) + + 19.3.1 (2019-10-17) =================== diff --git a/news/050cda98-2240-11ea-9951-00e04c3600d8.trivial b/news/050cda98-2240-11ea-9951-00e04c3600d8.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/1668.feature b/news/1668.feature deleted file mode 100644 index d200841ea..000000000 --- a/news/1668.feature +++ /dev/null @@ -1,2 +0,0 @@ -Default to doing a user install (as if ``--user`` was passed) when the main -site-packages directory is not writeable and user site-packages are enabled. diff --git a/news/284c23de-df0b-4aaa-8454-4569829768fc.trivial b/news/284c23de-df0b-4aaa-8454-4569829768fc.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/31044E84-3F3C-48A8-84B2-6028E21FEBF1.trivial b/news/31044E84-3F3C-48A8-84B2-6028E21FEBF1.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/3801.trivial b/news/3801.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/4785.process b/news/4785.process deleted file mode 100644 index 022510f4b..000000000 --- a/news/4785.process +++ /dev/null @@ -1 +0,0 @@ -Switch to a dedicated CLI tool for vendoring dependencies. diff --git a/news/5702.bugfix b/news/5702.bugfix deleted file mode 100644 index 2541d745e..000000000 --- a/news/5702.bugfix +++ /dev/null @@ -1 +0,0 @@ -Correctly handle system site-packages, in virtual environments created with venv (PEP 405). diff --git a/news/5716.bugfix b/news/5716.bugfix deleted file mode 100644 index 2659657cb..000000000 --- a/news/5716.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix case sensitive comparison of pip freeze when used with -r option. diff --git a/news/5860.trivial b/news/5860.trivial deleted file mode 100644 index 7f77d3fd7..000000000 --- a/news/5860.trivial +++ /dev/null @@ -1 +0,0 @@ -Updated info about pip support for url_req portion of PEP508 in doc. diff --git a/news/6004.trivial b/news/6004.trivial deleted file mode 100644 index 79eb6962c..000000000 --- a/news/6004.trivial +++ /dev/null @@ -1 +0,0 @@ -Read version in setup.py without re diff --git a/news/6410.bugfix b/news/6410.bugfix deleted file mode 100644 index c96fba8bd..000000000 --- a/news/6410.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Enforce PEP 508 requirement format in ``pyproject.toml`` -``build-system.requires``. diff --git a/news/6414.feature b/news/6414.feature deleted file mode 100644 index 5a72befdc..000000000 --- a/news/6414.feature +++ /dev/null @@ -1 +0,0 @@ -Warn if a path in PATH starts with tilde during ``pip install``. diff --git a/news/6426.bugfix b/news/6426.bugfix deleted file mode 100644 index 25512b3c8..000000000 --- a/news/6426.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make ``ensure_dir()`` also ignore ``ENOTEMPTY`` as seen on Windows. diff --git a/news/6599.bugfix b/news/6599.bugfix deleted file mode 100644 index 38bd89e2e..000000000 --- a/news/6599.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix building packages which specify ``backend-path`` in pyproject.toml. diff --git a/news/6640.feature b/news/6640.feature deleted file mode 100644 index cb7e939da..000000000 --- a/news/6640.feature +++ /dev/null @@ -1,2 +0,0 @@ -Cache wheels built from Git requirements that are considered immutable, -because they point to a commit hash. diff --git a/news/6642.bugfix b/news/6642.bugfix deleted file mode 100644 index 470572ad6..000000000 --- a/news/6642.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Do not attempt to run ``setup.py clean`` after a ``pep517`` build error, -since a ``setup.py`` may not exist in that case. diff --git a/news/6673.feature b/news/6673.feature deleted file mode 100644 index 829bb2328..000000000 --- a/news/6673.feature +++ /dev/null @@ -1,2 +0,0 @@ -Add option ``--no-python-version-warning`` to silence warnings -related to deprecation of Python versions. diff --git a/news/6783.bugfix b/news/6783.bugfix deleted file mode 100644 index 239d962f2..000000000 --- a/news/6783.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fix passwords being visible in the index-url in -"Downloading " message. diff --git a/news/6852.feature b/news/6852.feature deleted file mode 100644 index 30097e82a..000000000 --- a/news/6852.feature +++ /dev/null @@ -1,5 +0,0 @@ -Cache wheels that ``pip wheel`` built locally, matching what -``pip install`` does. This particularly helps performance in workflows where -``pip wheel`` is used for `building before installing -`_. -Users desiring the original behavior can use ``pip wheel --no-cache-dir``. diff --git a/news/6908.removal b/news/6908.removal deleted file mode 100644 index aca9d590a..000000000 --- a/news/6908.removal +++ /dev/null @@ -1,2 +0,0 @@ -Remove wheel tag calculation from pip and use ``packaging.tags``. This -should provide more tags ordered better than in prior releases. diff --git a/news/6998.removal b/news/6998.removal deleted file mode 100644 index 7c38a48fd..000000000 --- a/news/6998.removal +++ /dev/null @@ -1 +0,0 @@ -Deprecate setup.py-based builds that do not generate an ``.egg-info`` directory. diff --git a/news/6a054cec-e4d6-4494-a554-90a2c0bee837.trivial b/news/6a054cec-e4d6-4494-a554-90a2c0bee837.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7146.feature b/news/7146.feature deleted file mode 100644 index db57345ed..000000000 --- a/news/7146.feature +++ /dev/null @@ -1 +0,0 @@ -Display CA information in ``pip debug``. diff --git a/news/7155.bugfix b/news/7155.bugfix deleted file mode 100644 index 2541d745e..000000000 --- a/news/7155.bugfix +++ /dev/null @@ -1 +0,0 @@ -Correctly handle system site-packages, in virtual environments created with venv (PEP 405). diff --git a/news/7178.trivial b/news/7178.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7182.doc b/news/7182.doc deleted file mode 100644 index f55c6ee7e..000000000 --- a/news/7182.doc +++ /dev/null @@ -1 +0,0 @@ -Document that "coding: utf-8" is supported in requirements.txt diff --git a/news/7191.bugfix b/news/7191.bugfix deleted file mode 100644 index 06b3b01ef..000000000 --- a/news/7191.bugfix +++ /dev/null @@ -1 +0,0 @@ -Change method from shutil.remove to shutil.rmtree in noxfile.py. diff --git a/news/7193.bugfix b/news/7193.bugfix deleted file mode 100644 index a871b6303..000000000 --- a/news/7193.bugfix +++ /dev/null @@ -1 +0,0 @@ -Skip running tests which require subversion, when svn isn't installed diff --git a/news/7197.doc b/news/7197.doc deleted file mode 100644 index 47b6d7c4a..000000000 --- a/news/7197.doc +++ /dev/null @@ -1 +0,0 @@ -Explain how to get pip's source code in `Getting Started `_ diff --git a/news/7199.trivial b/news/7199.trivial deleted file mode 100644 index 0f7f2fea8..000000000 --- a/news/7199.trivial +++ /dev/null @@ -1 +0,0 @@ -adding line in trivial file to avoid linter issues. diff --git a/news/7201.doc b/news/7201.doc deleted file mode 100644 index 95df888c4..000000000 --- a/news/7201.doc +++ /dev/null @@ -1 +0,0 @@ -Describe how basic authentication credentials in URLs work. diff --git a/news/7207.bugfix b/news/7207.bugfix deleted file mode 100644 index 014f979c7..000000000 --- a/news/7207.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix not sending client certificates when using ``--trusted-host``. diff --git a/news/7222.doc b/news/7222.doc deleted file mode 100644 index 5d68f707a..000000000 --- a/news/7222.doc +++ /dev/null @@ -1 +0,0 @@ -Add more clear installation instructions diff --git a/news/7225.feature b/news/7225.feature deleted file mode 100644 index 1678a80f4..000000000 --- a/news/7225.feature +++ /dev/null @@ -1 +0,0 @@ -Show only the filename (instead of full URL), when downloading from PyPI. diff --git a/news/7230.trivial b/news/7230.trivial deleted file mode 100644 index 2e63419b1..000000000 --- a/news/7230.trivial +++ /dev/null @@ -1 +0,0 @@ -Change ``pip._internal.wheel`` to respect docstring conventions. diff --git a/news/7268.trivial b/news/7268.trivial deleted file mode 100644 index 052c82791..000000000 --- a/news/7268.trivial +++ /dev/null @@ -1 +0,0 @@ -refactoring: remove should_use_ephemeral_cache diff --git a/news/7281.trivial b/news/7281.trivial deleted file mode 100644 index 8fce9ce51..000000000 --- a/news/7281.trivial +++ /dev/null @@ -1 +0,0 @@ -refactor _get_used_vcs_backend diff --git a/news/7296.bugfix b/news/7296.bugfix deleted file mode 100644 index 5d617bf75..000000000 --- a/news/7296.bugfix +++ /dev/null @@ -1,5 +0,0 @@ -Make sure ``pip wheel`` never outputs pure python wheels with a -python implementation tag. Better fix/workaround for -`#3025 `_ by -using a per-implementation wheel cache instead of caching pure python -wheels with an implementation tag in their name. diff --git a/news/7296.removal b/news/7296.removal deleted file mode 100644 index ef0e5f749..000000000 --- a/news/7296.removal +++ /dev/null @@ -1,3 +0,0 @@ -The pip>=20 wheel cache is not retro-compatible with previous versions. Until -pip 21.0, pip will continue to take advantage of existing legacy cache -entries. diff --git a/news/7297.removal b/news/7297.removal deleted file mode 100644 index 663fd9ad6..000000000 --- a/news/7297.removal +++ /dev/null @@ -1 +0,0 @@ -Deprecate undocumented ``--skip-requirements-regex`` option. diff --git a/news/7309.removal b/news/7309.removal deleted file mode 100644 index 54c2f0626..000000000 --- a/news/7309.removal +++ /dev/null @@ -1 +0,0 @@ -Deprecate passing install-location-related options via ``--install-option``. diff --git a/news/7327.removal b/news/7327.removal deleted file mode 100644 index b35f58e0f..000000000 --- a/news/7327.removal +++ /dev/null @@ -1,2 +0,0 @@ -Use literal "abi3" for wheel tag on CPython 3.x, to align with PEP 384 -which only defines it for this platform. diff --git a/news/7333.bugfix b/news/7333.bugfix deleted file mode 100644 index 8ddcba76a..000000000 --- a/news/7333.bugfix +++ /dev/null @@ -1 +0,0 @@ -Include ``subdirectory`` URL fragments in cache keys. diff --git a/news/7334.trivial b/news/7334.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7340.bugfix b/news/7340.bugfix deleted file mode 100644 index ca6332d17..000000000 --- a/news/7340.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fix typo in warning message when any of ``--build-option``, ``--global-option`` -and ``--install-option`` is used in requirements.txt diff --git a/news/7347.doc b/news/7347.doc deleted file mode 100644 index bc62c56cd..000000000 --- a/news/7347.doc +++ /dev/null @@ -1 +0,0 @@ -Fix documentation links for index options diff --git a/news/7355.removal b/news/7355.removal deleted file mode 100644 index 3f61b4011..000000000 --- a/news/7355.removal +++ /dev/null @@ -1,4 +0,0 @@ -Remove interpreter-specific major version tag e.g. ``cp3-none-any`` -from consideration. This behavior was not documented strictly, and this -tag in particular is `not useful `_. -Anyone with a use case can create an issue with pypa/packaging. diff --git a/news/7359.trivial b/news/7359.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7376.feature b/news/7376.feature deleted file mode 100644 index 43ed51345..000000000 --- a/news/7376.feature +++ /dev/null @@ -1,2 +0,0 @@ -Suggest a more robust command to upgrade pip itself to avoid confusion when the -current pip command is not available as ``pip``. diff --git a/news/7385.doc b/news/7385.doc deleted file mode 100644 index ec8c4a4a3..000000000 --- a/news/7385.doc +++ /dev/null @@ -1 +0,0 @@ -Better document the requirements file format diff --git a/news/7393.bugfix b/news/7393.bugfix deleted file mode 100644 index a7b88d2e0..000000000 --- a/news/7393.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix the logging of cached HTTP response shown as downloading. diff --git a/news/7411.trivial b/news/7411.trivial deleted file mode 100644 index 9181e01ab..000000000 --- a/news/7411.trivial +++ /dev/null @@ -1 +0,0 @@ -Added a note about # noqa comments in the Getting Started Guide diff --git a/news/7463.trivial b/news/7463.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7487.removal b/news/7487.removal deleted file mode 100644 index aa89bf42a..000000000 --- a/news/7487.removal +++ /dev/null @@ -1,2 +0,0 @@ -Wheel processing no longer permits wheels containing more than one top-level -.dist-info directory. diff --git a/news/7488.bugfix b/news/7488.bugfix deleted file mode 100644 index 047a8c1fc..000000000 --- a/news/7488.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Effectively disable the wheel cache when it is not writable, as is the -case with the http cache. diff --git a/news/7490.trivial b/news/7490.trivial deleted file mode 100644 index 25619f36b..000000000 --- a/news/7490.trivial +++ /dev/null @@ -1 +0,0 @@ -Fix unrelease bug from #7319. diff --git a/news/7498.feature b/news/7498.feature deleted file mode 100644 index 52f0c57a3..000000000 --- a/news/7498.feature +++ /dev/null @@ -1,2 +0,0 @@ -Define all old pip console script entrypoints to prevent import issues in -stale wrapper scripts. diff --git a/news/7517.feature b/news/7517.feature deleted file mode 100644 index 089fbc387..000000000 --- a/news/7517.feature +++ /dev/null @@ -1,4 +0,0 @@ -The build step of ``pip wheel`` now builds all wheels to a cache first, -then copies them to the wheel directory all at once. -Before, it built them to a temporary direcory and moved -them to the wheel directory one by one. diff --git a/news/7521.trivial b/news/7521.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7527.trivial b/news/7527.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7541.bugfix b/news/7541.bugfix deleted file mode 100644 index 4fccfe3ad..000000000 --- a/news/7541.bugfix +++ /dev/null @@ -1 +0,0 @@ -Correctly handle relative cache directory provided via --cache-dir. diff --git a/news/7543.removal b/news/7543.removal deleted file mode 100644 index eab7016ab..000000000 --- a/news/7543.removal +++ /dev/null @@ -1,4 +0,0 @@ -Support for the ``git+git@`` form of VCS requirement is being deprecated and -will be removed in pip 21.0. Switch to ``git+https://`` or -``git+ssh://``. ``git+git://`` also works but its use is discouraged as it is -insecure. diff --git a/news/7577.trivial b/news/7577.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7582.trivial b/news/7582.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/7587.trivial b/news/7587.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/77a2e30d-d448-43fd-9223-81dff5ae5001.trivial b/news/77a2e30d-d448-43fd-9223-81dff5ae5001.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/85a9deeb-db71-4c14-a57a-6d440995130d.trivial b/news/85a9deeb-db71-4c14-a57a-6d440995130d.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/980.feature b/news/980.feature deleted file mode 100644 index cd055e09e..000000000 --- a/news/980.feature +++ /dev/null @@ -1,8 +0,0 @@ -Expand ``~`` prefix to user directory in path options, configs, and -environment variables. Values that may be either URL or path are not -currently supported, to avoid ambiguity: - -* ``--find-links`` -* ``--constraint``, ``-c`` -* ``--requirement``, ``-r`` -* ``--editable``, ``-e`` diff --git a/news/CacheControl.vendor b/news/CacheControl.vendor deleted file mode 100644 index 2c8e09f3c..000000000 --- a/news/CacheControl.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade CacheControl to 0.12.5 diff --git a/news/certifi.vendor b/news/certifi.vendor deleted file mode 100644 index 66e84cb20..000000000 --- a/news/certifi.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade certifi to 2019.9.11 diff --git a/news/colorama.vendor b/news/colorama.vendor deleted file mode 100644 index 1defb49f0..000000000 --- a/news/colorama.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade colorama to 0.4.1 diff --git a/news/distlib.vendor b/news/distlib.vendor deleted file mode 100644 index 8b11e09a3..000000000 --- a/news/distlib.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade distlib to 0.2.9.post0 diff --git a/news/ipaddress.vendor b/news/ipaddress.vendor deleted file mode 100644 index 902e589a9..000000000 --- a/news/ipaddress.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade ipaddress to 1.0.22 diff --git a/news/packaging.vendor b/news/packaging.vendor deleted file mode 100644 index a896b7e78..000000000 --- a/news/packaging.vendor +++ /dev/null @@ -1 +0,0 @@ -Update packaging to 20.0. diff --git a/news/pkg_resources.vendor b/news/pkg_resources.vendor deleted file mode 100644 index 7f1972b3b..000000000 --- a/news/pkg_resources.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade pkg_resources (via setuptools) to 44.0.0 diff --git a/news/pre-commit-gha-cache.trivial b/news/pre-commit-gha-cache.trivial deleted file mode 100644 index e69de29bb..000000000 diff --git a/news/pyparsing.vendor b/news/pyparsing.vendor deleted file mode 100644 index 90374a1ef..000000000 --- a/news/pyparsing.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade pyparsing to 2.4.2 diff --git a/news/six.vendor b/news/six.vendor deleted file mode 100644 index 3186ab0cf..000000000 --- a/news/six.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade six to 1.12.0 diff --git a/news/urllib3.vendor b/news/urllib3.vendor deleted file mode 100644 index 80b98b44e..000000000 --- a/news/urllib3.vendor +++ /dev/null @@ -1 +0,0 @@ -Upgrade urllib3 to 1.25.6 diff --git a/src/pip/__init__.py b/src/pip/__init__.py index c1e42c80f..8336d39e9 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -4,7 +4,7 @@ if MYPY_CHECK_RUNNING: from typing import List, Optional -__version__ = "20.0.dev0" +__version__ = "20.0" def main(args=None):