Skip to content

Commit 9cdec14

Browse files
committed
Remove egg from URLs
1 parent 58fd2ec commit 9cdec14

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/guides/private-python-packages.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Pip supports installing packages from a :ref:`Git repository <pip:vcs support>`
1717

1818
.. code::
1919
20-
git+https://gitprovider.com/user/project.git@{version}#egg={package-name}
20+
git+https://gitprovider.com/user/project.git@{version}
2121
2222
Or if your repository is private:
2323

2424
.. code::
2525
26-
git+https://{token}@gitprovider.com/user/project.git@{version}#egg={package-name}
26+
git+https://{token}@gitprovider.com/user/project.git@{version}
2727
2828
Where ``version`` can be a tag, a branch, or a commit.
2929
And ``token`` is a personal access token with read only permissions from your provider.
@@ -50,7 +50,7 @@ URI example:
5050

5151
.. code::
5252
53-
git+https://${GITHUB_TOKEN}@github.com/user/project.git@{version}#egg={package-name}
53+
git+https://${GITHUB_TOKEN}@github.com/user/project.git@{version}
5454
5555
.. warning::
5656

@@ -70,7 +70,7 @@ URI example:
7070

7171
.. code::
7272
73-
git+https://${GITLAB_TOKEN_USER}:${GITLAB_TOKEN}@gitlab.com/user/project.git@{version}#egg={package-name}
73+
git+https://${GITLAB_TOKEN_USER}:${GITLAB_TOKEN}@gitlab.com/user/project.git@{version}
7474
7575
Here ``GITLAB_TOKEN_USER`` is the user from the deploy token you created, not your GitLab user.
7676

@@ -85,7 +85,7 @@ URI example:
8585

8686
.. code::
8787
88-
git+https://${BITBUCKET_USER}:${BITBUCKET_APP_PASSWORD}@bitbucket.org/user/project.git@{version}#egg={package-name}'
88+
git+https://${BITBUCKET_USER}:${BITBUCKET_APP_PASSWORD}@bitbucket.org/user/project.git@{version}'
8989
9090
Here ``BITBUCKET_USER`` is your Bitbucket user.
9191

0 commit comments

Comments
 (0)