Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
news
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sartika Aritonang
news
Commits
6adaee16
Commit
6adaee16
authored
May 29, 2020
by
Sartika Aritonang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
6baac608
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
utils.py
stbi/Lib/site-packages/pip/_vendor/packaging/utils.py
+62
-0
No files found.
stbi/Lib/site-packages/pip/_vendor/packaging/utils.py
0 → 100644
View file @
6adaee16
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
from
__future__
import
absolute_import
,
division
,
print_function
import
re
from
._typing
import
MYPY_CHECK_RUNNING
from
.version
import
InvalidVersion
,
Version
if
MYPY_CHECK_RUNNING
:
# pragma: no cover
from
typing
import
Union
_canonicalize_regex
=
re
.
compile
(
r"[-_.]+"
)
def
canonicalize_name
(
name
):
# type: (str) -> str
# This is taken from PEP 503.
return
_canonicalize_regex
.
sub
(
"-"
,
name
)
.
lower
()
def
canonicalize_version
(
_version
):
# type: (str) -> Union[Version, str]
"""
This is very similar to Version.__str__, but has one subtle difference
with the way it handles the release segment.
"""
try
:
version
=
Version
(
_version
)
except
InvalidVersion
:
# Legacy versions cannot be normalized
return
_version
parts
=
[]
# Epoch
if
version
.
epoch
!=
0
:
parts
.
append
(
"{0}!"
.
format
(
version
.
epoch
))
# Release segment
# NB: This strips trailing '.0's to normalize
parts
.
append
(
re
.
sub
(
r"(\.0)+$"
,
""
,
"."
.
join
(
str
(
x
)
for
x
in
version
.
release
)))
# Pre-release
if
version
.
pre
is
not
None
:
parts
.
append
(
""
.
join
(
str
(
x
)
for
x
in
version
.
pre
))
# Post-release
if
version
.
post
is
not
None
:
parts
.
append
(
".post{0}"
.
format
(
version
.
post
))
# Development release
if
version
.
dev
is
not
None
:
parts
.
append
(
".dev{0}"
.
format
(
version
.
dev
))
# Local version segment
if
version
.
local
is
not
None
:
parts
.
append
(
"+{0}"
.
format
(
version
.
local
))
return
""
.
join
(
parts
)
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