-
-
Notifications
You must be signed in to change notification settings - Fork 83
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 #358 from hauntsaninja/fixurl
Fix requirement produced for git URL in extra
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
v4.8.3 | ||
====== | ||
|
||
* #357: Fixed requirement generation from egg-info when a | ||
URL requirement is given. | ||
|
||
v4.8.2 | ||
====== | ||
|
||
|
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 |
---|---|---|
|
@@ -245,6 +245,7 @@ def test_more_complex_deps_requires_text(self): | |
[extra1] | ||
dep4 | ||
dep6@ git+https://example.com/python/[email protected] | ||
[extra2:python_version < "3"] | ||
dep5 | ||
|
@@ -257,6 +258,7 @@ def test_more_complex_deps_requires_text(self): | |
'dep3; python_version < "3"', | ||
'dep4; extra == "extra1"', | ||
'dep5; (python_version < "3") and extra == "extra2"', | ||
'dep6@ git+https://example.com/python/[email protected] ; extra == "extra1"', | ||
] | ||
# It's important that the environment marker expression be | ||
# wrapped in parentheses to avoid the following 'and' binding more | ||
|