-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oep-0018: reminder that pip install from PyPI ignores URLs
- Loading branch information
1 parent
d15ab26
commit 962bb04
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ OEP-0018: Python Dependency Management | |
+-----------------+--------------------------------------------------------+ | ||
| Title | Python Dependencies Management | | ||
+-----------------+--------------------------------------------------------+ | ||
| Last Modified | 2018-10-16 | | ||
| Last Modified | 2019-02-20 | | ||
+-----------------+--------------------------------------------------------+ | ||
| Authors | Jeremy Bowman <[email protected]> | | ||
+-----------------+--------------------------------------------------------+ | ||
|
@@ -400,6 +400,9 @@ packages from URLs whenever possible: | |
partially worked around via a post-processing script for the generated | ||
requirements files; an example can be found in `edx-platform`_ at | ||
``scripts/post-pip-compile.sh``. | ||
* When installing a package from PyPI, pip will not pull requirements | ||
from URLs for security reasons (the content of the URLs can | ||
change). It will only pull requirements from PyPI. | ||
|
||
.. _Non-editable URL installations: https://github.com/jazzband/pip-tools/issues/355 | ||
.. _relative local paths are expanded to absolute paths: https://github.com/jazzband/pip-tools/issues/204 | ||
|