Skip to content

Commit

Permalink
Bump plette to v0.4.2 (#5401)
Browse files Browse the repository at this point in the history
Fix #5395
  • Loading branch information
oz123 authored Oct 12, 2022
1 parent 4eb5c9f commit ea7de7f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pipenv/vendor/plette/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Lockfile", "Pipfile",
]

__version__ = '0.4.1'
__version__ = '0.4.2'

from .lockfiles import Lockfile
from .pipfiles import Pipfile
10 changes: 4 additions & 6 deletions pipenv/vendor/plette/models/sections.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,14 @@ class SourceCollection(DataViewSequence):


class Requires(DataView):
"""Representation of the `[requires]` section in a Pipfile.
"""
"""Representation of the `[requires]` section in a Pipfile."""

__SCHEMA__ = {
"python_version": {
"type": "string",
"excludes": ["python_full_version"],
},
"python_full_version": {
"type": "string",
"excludes": ["python_version"],
},
}

Expand All @@ -54,8 +52,8 @@ def python_full_version(self):


class Meta(DataView):
"""Representation of the `_meta` section in a Pipfile.lock.
"""
"""Representation of the `_meta` section in a Pipfile.lock."""

__SCHEMA__ = {
"hash": {"type": "dict", "required": True},
"pipfile-spec": {"type": "integer", "required": True, "min": 0},
Expand Down
2 changes: 1 addition & 1 deletion pipenv/vendor/vendor.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ parse==1.19.0
pexpect==4.8.0
pipdeptree==2.3.1
platformdirs==2.4.0
plette[validation]==0.4.1
plette[validation]==0.4.2
ptyprocess==0.7.0
pyparsing==3.0.9
python-dotenv==0.19.0
Expand Down

0 comments on commit ea7de7f

Please sign in to comment.