Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
26f98e0a
Commit
26f98e0a
authored
Feb 27, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump vendored packaging to 16.5. Fixes #502.
parent
721536a8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
pkg_resources/_vendor/packaging/__about__.py
pkg_resources/_vendor/packaging/__about__.py
+1
-1
pkg_resources/_vendor/packaging/requirements.py
pkg_resources/_vendor/packaging/requirements.py
+1
-1
pkg_resources/_vendor/packaging/specifiers.py
pkg_resources/_vendor/packaging/specifiers.py
+5
-5
pkg_resources/_vendor/vendored.txt
pkg_resources/_vendor/vendored.txt
+1
-1
No files found.
pkg_resources/_vendor/packaging/__about__.py
View file @
26f98e0a
...
...
@@ -12,7 +12,7 @@ __title__ = "packaging"
__summary__
=
"Core utilities for Python packages"
__uri__
=
"https://github.com/pypa/packaging"
__version__
=
"16.
4
"
__version__
=
"16.
5
"
__author__
=
"Donald Stufft and individual contributors"
__email__
=
"donald@stufft.io"
...
...
pkg_resources/_vendor/packaging/requirements.py
View file @
26f98e0a
...
...
@@ -49,7 +49,7 @@ VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE)
VERSION_ONE
=
VERSION_PEP440
^
VERSION_LEGACY
VERSION_MANY
=
Combine
(
VERSION_ONE
+
ZeroOrMore
(
COMMA
+
VERSION_ONE
),
joinString
=
","
)(
"_raw_spec"
)
joinString
=
","
,
adjacent
=
False
)(
"_raw_spec"
)
_VERSION_SPEC
=
Optional
(((
LPAREN
+
VERSION_MANY
+
RPAREN
)
|
VERSION_MANY
))
_VERSION_SPEC
.
setParseAction
(
lambda
s
,
l
,
t
:
t
.
_raw_spec
or
''
)
...
...
pkg_resources/_vendor/packaging/specifiers.py
View file @
26f98e0a
...
...
@@ -218,11 +218,11 @@ class LegacySpecifier(_IndividualSpecifier):
(?P<operator>(==|!=|<=|>=|<|>))
\
s*
(?P<version>
[^
;\
s)]* # We jus
t match everything, except for whitespace,
# a semi-colon for marker support, and closing paren
# since versions can be enclosed in them. Since this is
# a "legacy" specifier and the version string can be
# just about anything
.
[^
,;\
s)]* # Si
nce this is a "legacy" specifier, and the version
# string can be just about anything, we match everything
# except for whitespace, a semi-colon for marker support,
# a closing paren since versions can be enclosed in
# them, and a comma since it's a version separator
.
)
"""
)
...
...
pkg_resources/_vendor/vendored.txt
View file @
26f98e0a
packaging==16.
4
packaging==16.
5
pyparsing==2.0.6
six==1.10.0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment