-
-
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.
Fix package name canonicalization bug
- Fixes #2951 - Fixes #2956 - Fixes #2963 Signed-off-by: Dan Ryan <[email protected]>
- Loading branch information
1 parent
287407b
commit 59dd901
Showing
21 changed files
with
5,637 additions
and
3 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Fixed a bug which caused canonicalized package names to fail to resolve against PyPI. |
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 @@ | ||
Updated ``requirementslib`` to version ``1.1.9``. |
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 @@ | ||
""" | ||
Extensible validation for Python dictionaries. | ||
:copyright: 2012-2016 by Nicola Iarocci. | ||
:license: ISC, see LICENSE for more details. | ||
Full documentation is available at http://python-cerberus.org/ | ||
""" | ||
|
||
from __future__ import absolute_import | ||
|
||
from cerberus.validator import DocumentError, Validator | ||
from cerberus.schema import (rules_set_registry, schema_registry, Registry, | ||
SchemaError) | ||
from cerberus.utils import TypeDefinition | ||
|
||
|
||
__version__ = "1.2" | ||
|
||
__all__ = [ | ||
DocumentError.__name__, | ||
Registry.__name__, | ||
SchemaError.__name__, | ||
TypeDefinition.__name__, | ||
Validator.__name__, | ||
'schema_registry', | ||
'rules_set_registry' | ||
] |
Oops, something went wrong.