Skip to content

Add PDM to the list of alternatives to Pipenv #1036

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

Merged
merged 7 commits into from
Jan 23, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update source/tutorials/managing-dependencies.rst
Co-authored-by: Brian Rutledge <[email protected]>
  • Loading branch information
pawamoy and bhrutledge authored Jan 23, 2022
commit cbd9db75e757cda8ee980dac9b7aa4430888ec2f
5 changes: 3 additions & 2 deletions source/tutorials/managing-dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,9 @@ and techniques, listed in alphabetical order, to see if one of them is a better
tool supporting :pep:`582` (replacing virtual environments with ``__pypackages__``
directory for package installation) and relying on standards such as :pep:`517` and
:pep:`621`.
* `pip-tools <https://github.com/jazzband/pip-tools>`_ to build your own
custom workflow from lower level pieces like ``pip-compile`` and ``pip-sync``
* `pip-tools <https://github.com/jazzband/pip-tools>`_ for creating a lock file of all
dependencies from a list of packages directly used in a project, and ensuring that
only those dependencies are installed.
* `poetry <https://github.com/python-poetry/poetry>`__ for a tool comparable in scope
to ``pipenv`` that focuses more directly on use cases where the repository being
managed is structured as a Python project with a valid ``pyproject.toml`` file
Expand Down