- Add type hints.
- Normalize package names from underscores to hyphens, just like pip does.
- Stop distributing tests to reduce package size. Tests are not intended to be run outside of the tox setup in the repository. Repackagers can use GitHub's tarballs per tag.
- Fix to ignore lines that represent arguments to pip, such as
--find-links
.
- Drop Python 3.5 support.
- Support Python 3.9.
- Move license from ISC to MIT License.
- Fix to ignore packages installed directly from wheels, for example pip itself
on Heroku, which will output its location in
pip freeze
aspip @ file:///tmp/pip-20.1.1-py2.py3-none-any.whl
.
- Update Python support to 3.5-3.8, as 3.4 has reached its end of life.
- Converted setuptools metadata to configuration file. This meant removing the
__version__
attribute from the package. If you want to inspect the installed version, useimportlib.metadata.version("pip-lock")
(docs / backport). - Fix parsing of package names featuring extras e.g.
package[extra1]
. - Require Pip 10+.
- Drop Python 2 support, only Python 3.4+ is supported now.
- Ignore installed external (
-e
) packages.
- Fix for pip 10 move of import to
pip._internal
- Remove logic that made relative file paths relative to the path of the calling code's file. It's now the standard behaviour of relative to the current working directory. Passing an absolute path is recommended.
- Make comparison of package names case-insensitive to work with
requirements.txt
files that use a different case to the canoncial package name. This can happen withpip-compile
that always outputs lowercase names. - Fix 'mismatches' typo
- Only indent mismatch list by 4 spaces in error message
- Fix relative paths for all environments
- Support relative requirements.txt paths
- First release on PyPI.