forked from jazzband/pip-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jazzband#644 from vphilippon/vendor-pip-9.0.3
Vendor pip 9.0.3
- Loading branch information
Showing
293 changed files
with
101,668 additions
and
103 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[run] | ||
branch = True | ||
source = piptools | ||
omit = | ||
piptools/_compat/* | ||
piptools/_vendored/* |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = build/*, dist/*, pip_tools.egg-info/*, piptools/_compat/* | ||
exclude = build/*, dist/*, pip_tools.egg-info/*, piptools/_compat/*, piptools/_vendored/* |
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 |
---|---|---|
|
@@ -6,11 +6,6 @@ python: | |
- "3.5" | ||
- "3.6" | ||
- "pypy" | ||
env: | ||
- PIP=8 | ||
- PIP=8.1.1 | ||
- PIP=9 | ||
- PIP=latest | ||
|
||
cache: pip | ||
install: | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import os | ||
import sys | ||
|
||
# Inject vendored directory into system path. | ||
v_path = os.path.abspath(os.path.sep.join([os.path.dirname(os.path.realpath(__file__)), '_vendored'])) | ||
sys.path.insert(0, v_path) |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Vendored libs policy | ||
==================== | ||
|
||
* Vendored libraries **MUST** not be modified except as required to | ||
successfully vendor them. | ||
|
||
* Vendored libraries **MUST** be released copies of libraries available on | ||
PyPI. | ||
|
||
* The versions of libraries vendored in pip-tools **MUST** be reflected | ||
in the section below. | ||
|
||
* Vendored libraries **MUST** function without any build steps such as 2to3 or | ||
compilation of C code, practically this limits to single source 2.x/3.x and | ||
pure Python. | ||
|
||
* Any modifications made to libraries **MUST** be noted in the section below. | ||
|
||
|
||
Versions and modifications: | ||
=========================== | ||
|
||
* ``pip`` == 9.0.3 | ||
|
||
Modifications: | ||
- None. | ||
|
||
Reason: ``pip`` 10.x internal changes break the dependency resolution code for ``pip-compile``. | ||
Note that ``pip-sync`` still uses the user-installed ``pip`` to perform the install/uninstall operations. |
Empty file.
Oops, something went wrong.