From 7f1bd507aef29fe0cb0656305612fd8d6dcc665b Mon Sep 17 00:00:00 2001 From: Reinout van Rees Date: Wed, 29 Aug 2018 15:13:23 +0200 Subject: [PATCH 1/2] Added missing 'egg=' in the example url --- docs/basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/basics.rst b/docs/basics.rst index e6afea3f44..e8427dc4ca 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -247,7 +247,7 @@ the current working directory when working on packages:: "e1839a8" = {path = ".", editable = true} ... -.. note:: All sub-dependencies will get added to the ``Pipfile.lock`` as well. Sub-dependencies are **not** added to the +.. note:: All sub-dependencies will get added to the ``Pipfile.lock`` as well. Sub-dependencies are **not** added to the ``Pipfile.lock`` if you leave the ``-e`` option out. @@ -336,7 +336,7 @@ If you experience issues with ``$ pipenv shell``, just check the ``PIPENV_SHELL` You can install packages with pipenv from git and other version control systems using URLs formatted according to the following rule:: - +:////@# + +:////@#egg= The only optional section is the ``@`` section. When using git over SSH, you may use the shorthand vcs and scheme alias ``git+git@:/@#``. Note that this is translated to ``git+ssh://git@`` when parsed. From 12190e46f9352ec36188400667e03254f8831458 Mon Sep 17 00:00:00 2001 From: Reinout van Rees Date: Wed, 29 Aug 2018 15:31:51 +0200 Subject: [PATCH 2/2] Added news/ file for the changelog --- news/2792.doc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 news/2792.doc diff --git a/news/2792.doc b/news/2792.doc new file mode 100644 index 0000000000..7695f0206a --- /dev/null +++ b/news/2792.doc @@ -0,0 +1,3 @@ +Fixed the example url for doing "pipenv install -e +some-repo-url#egg=something", it was missing the "egg=" in the fragment +identifier. \ No newline at end of file