Skip to content

Commit

Permalink
Merge pull request #2989 from pypa/update-vendored-deps
Browse files Browse the repository at this point in the history
Update vendored deps
  • Loading branch information
techalchemy committed Oct 10, 2018
2 parents 2687897 + 828fa20 commit cae8bad
Show file tree
Hide file tree
Showing 22 changed files with 5,652 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``.
15 changes: 15 additions & 0 deletions pipenv/vendor/cerberus/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ISC License

Copyright (c) 2012-2016 Nicola Iarocci.

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
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 cae8bad

Please sign in to comment.