Commit 3f194648 authored by Jason R. Coombs's avatar Jason R. Coombs

Merge pull request #522 from s-t-e-v-e-n-k/update-packaging

Update vendored packaging to 16.6
parents fd4f1029 7fc3b347
......@@ -12,7 +12,7 @@ __title__ = "packaging"
__summary__ = "Core utilities for Python packages"
__uri__ = "https://github.com/pypa/packaging"
__version__ = "16.5"
__version__ = "16.6"
__author__ = "Donald Stufft and individual contributors"
__email__ = "donald@stufft.io"
......
......@@ -73,9 +73,14 @@ VARIABLE = (
L("python_version") |
L("sys_platform") |
L("os_name") |
L("os.name") | # PEP-345
L("sys.platform") | # PEP-345
L("platform.version") | # PEP-345
L("platform.machine") | # PEP-345
L("platform.python_implementation") | # PEP-345
L("extra")
)
VARIABLE.setParseAction(lambda s, l, t: Variable(t[0]))
VARIABLE.setParseAction(lambda s, l, t: Variable(t[0].replace('.', '_')))
VERSION_CMP = (
L("===") |
......
packaging==16.5
packaging==16.6
pyparsing==2.0.6
six==1.10.0
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment