Skip to content

Commit

Permalink
Fix package name canonicalization bug
Browse files Browse the repository at this point in the history
- Fixes #2951
- Fixes #2956
- Fixes #2963

Signed-off-by: Dan Ryan <dan@danryan.co>
  • Loading branch information
techalchemy committed Oct 10, 2018
1 parent 287407b commit 59dd901
Show file tree
Hide file tree
Showing 21 changed files with 5,637 additions and 3 deletions.
1 change: 1 addition & 0 deletions news/2989.bugfix
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.
1 change: 1 addition & 0 deletions news/2989.vendor
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated ``requirementslib`` to version ``1.1.9``.
29 changes: 29 additions & 0 deletions pipenv/vendor/cerberus/__init__.py
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'
]
Loading

0 comments on commit 59dd901

Please sign in to comment.