- Fixed a bug which caused wheel requirements to include specifiers in ``Requirement.as_line()`` output, preventing installation when passing this output to pip. 49
1.1.2
==================
Features --------
- Allow locking of specific vcs references using a new api: ``Requirement.req.get_commit_hash()`` and ``Requirement.commit_hash`` and updates via ``Requirement.req.update_repo()``. 47
1.1.1
==================
Bug Fixes ---------
- Fixed a bug which sometimes caused extras to be dropped when parsing named requirements using constraint-style specifiers. 44
- Fix parsing error in `Requirement.as_ireq()` if requirement contains hashes. 45
1.1.0
==================
Features --------
- Added support for ``Requirement.get_dependencies()`` to return unpinned dependencies. - Implemented full support for both parsing and writing lockfiles. - Introduced lazy imports to enhance runtime performance. - Switch to ``packaging.canonicalize_name()`` instead of custom canonicalization function. - Added ``Requirement.copy()`` to the api to copy a requirement. 33
- Add pep423 formatting to package names when generating ``as_line()`` output. - Sort extras when building lines. - Improve local editable requirement name resolution. 36
Bug Fixes ---------
- Fixed a bug which prevented dependency resolution using pip >= 18.0.
- Fixed a bug which caused extras to be excluded from VCS urls generated from pipfiles. 41
Vendored Libraries ------------------
- Unvendored ``pipfile`` in favor of ``plette``. 33
Removals and Deprecations -------------------------
- Unvendored ``pipfile`` in favor of ``plette``. 33
- Moved pipfile and lockfile models to ``plette`` and added api wrappers for compatibility. 43
1.0.11
===================
Bug Fixes ---------
- If a package is stored on a network share drive, we now resolve it in a way that gets the correct relative path (29) - Properly handle malformed urls and avoid referencing unbound variables. (32)
1.0.10
===================
Bug Fixes ---------
- Fixed a bug which prevented the inclusion of all markers when parsing requirements from existing pipfile entries. `pypa/pipenv2520 <https://github.com/pypa/pipenv/issues/2520>`_ (#26) - requirementslib will now correctly handle subdirectory fragments on output and input for both pipfile and pip-style requirements. (27)