-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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 #3298 from pypa/bugfix/3148
Fix direct url dependency resolution
- Loading branch information
Showing
205 changed files
with
14,804 additions
and
4,775 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
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,6 +1,6 @@ | ||
steps: | ||
- script: | | ||
virtualenv D:\.venv | ||
D:\.venv\Scripts\pip.exe install -e . && D:\.venv\Scripts\pipenv install --dev | ||
D:\.venv\Scripts\pip.exe install -e .[test] && D:\.venv\Scripts\pipenv install --dev && D:\.venv\Scripts\pipenv run pip install -e .[test] | ||
echo D:\.venv\Scripts\pipenv --venv && echo D:\.venv\Scripts\pipenv --py && echo D:\.venv\Scripts\pipenv run python --version | ||
displayName: Make Virtualenv |
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 @@ | ||
steps: | ||
- script: 'python -m pip install --upgrade pip && python -m pip install -e .' | ||
- script: 'python -m pip install --upgrade pip && python -m pip install -e .[test]' | ||
displayName: Upgrade Pip & Install Pipenv |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
Fixed a bug which caused editable package resolution to sometimes fail with an unhelpful setuptools-related error message. |
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 @@ | ||
Dependency resolution now writes hashes for local and remote files to the lockfile. |
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 @@ | ||
Fixed a bug which prevented ``pipenv graph`` from correctly showing all dependencies when running from within ``pipenv shell``. |
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 @@ | ||
Fixed resolution of direct-url dependencies in ``setup.py`` files to respect ``PEP-508`` style URL dependencies. |
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 @@ | ||
Added support for resolution of direct-url dependencies in ``setup.py`` files to respect ``PEP-508`` style URL dependencies. |
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,3 @@ | ||
Fixed a bug which caused failures in warning reporting when running pipenv inside a virtualenv under some circumstances. | ||
|
||
- Fixed a bug with package discovery when running ``pipenv clean``. |
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,5 @@ | ||
Added full support for resolution of all dependency types including direct URLs, zip archives, tarballs, etc. | ||
|
||
- Improved error handling and formatting. | ||
|
||
- Introduced improved cross platform stream wrappers for better ``stdout`` and ``stderr`` consistency. |
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,28 @@ | ||
Updated vendored dependencies: | ||
|
||
- **attrs**: ``18.2.0`` => ``19.1.0`` | ||
- **certifi**: ``2018.10.15`` => ``2018.11.29`` | ||
- **cached_property**: ``1.4.3`` => ``1.5.1`` | ||
- **colorama**: ``0.3.9`` => ``0.4.1`` | ||
- **idna**: ``2.7`` => ``2.8`` | ||
- **markupsafe**: ``1.0`` => ``1.1.1`` | ||
- **orderedmultidict**: ``(new)`` => ``1.0`` | ||
- **packaging**: ``18.0`` => ``19.0`` | ||
- **parse**: ``1.9.0`` => ``1.11.1`` | ||
- **pathlib2**: ``2.3.2`` => ``2.3.3`` | ||
- **pep517**: ``(new)`` => ``0.5.0`` | ||
- **pipdeptree**: ``0.13.0`` => ``0.13.2`` | ||
- **pyparsing**: ``2.2.2`` => ``2.3.1`` | ||
- **python-dotenv**: ``0.9.1`` => ``0.10.1`` | ||
- **pythonfinder**: ``1.1.10`` => ``1.2.0`` | ||
- **pytoml**: ``(new)`` => ``0.1.20`` | ||
- **requests**: ``2.20.1`` => ``2.21.0`` | ||
- **requirementslib**: ``1.3.3`` => ``1.4.2`` | ||
- **shellingham**: ``1.2.7`` => ``1.2.8`` | ||
- **six**: ``1.11.0`` => ``1.12.0`` | ||
- **tomlkit**: ``0.5.2`` => ``0.5.3`` | ||
- **urllib3**: ``1.24`` => ``1.24.1`` | ||
- **vistir**: ``0.3.0`` => ``0.3.1`` | ||
- **yaspin**: ``0.14.0`` => ``0.14.1`` | ||
|
||
- Removed vendored dependency **cursor**. |
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 @@ | ||
Pipenv will now successfully recursively lock VCS sub-dependencies. |
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 @@ | ||
Pipenv will now discover and resolve the intrinsic dependencies of **all** VCS dependencies, whether they are editable or not, to prevent resolution conflicts. |
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 @@ | ||
Fixed a keyerror which could occur when locking VCS dependencies in some cases. |
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 +1 @@ | ||
Fix a bug that ``ValidationError`` is thrown when some fields are missing in source section. | ||
Fixed a bug that ``ValidationError`` is thrown when some fields are missing in source section. |
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 +1 @@ | ||
Fix the wrong order of old and new hashes in message. | ||
Fixed the wrong order of old and new hashes in message. |
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 +1 @@ | ||
Update the index names in lock file when source name in Pipfile is changed. | ||
Updated the index names in lock file when source name in Pipfile is changed. |
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
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
Oops, something went wrong.