Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pip-deps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
pip-deps
Merge requests
!8
Update CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Update CI
dev
into
master
Overview
0
Commits
2
Pipelines
7
Changes
2
Merged
Update CI
Marek Chrastina
requested to merge
dev
into
master
Mar 27, 2020
Overview
0
Commits
2
Pipelines
7
Changes
2
0
0
Merge request reports
Compare
master
version 6
3566e362
Aug 28, 2020
version 5
cb1e2f13
Aug 28, 2020
version 4
16fce60d
Mar 27, 2020
version 3
6be8fbaa
Mar 27, 2020
version 2
ff3195b9
Mar 27, 2020
version 1
5be47ea9
Mar 27, 2020
master (base)
and
latest version
latest version
c61fc509
2 commits,
Aug 28, 2020
version 6
3566e362
2 commits,
Aug 28, 2020
version 5
cb1e2f13
2 commits,
Aug 28, 2020
version 4
16fce60d
1 commit,
Mar 27, 2020
version 3
6be8fbaa
1 commit,
Mar 27, 2020
version 2
ff3195b9
1 commit,
Mar 27, 2020
version 1
5be47ea9
1 commit,
Mar 27, 2020
2 files
+
5
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
pipdeps/pipdeps.py
+
2
−
0
View file @ c61fc509
Edit in single-file editor
Open in Web IDE
Show full file
@@ -26,6 +26,7 @@ import pip._internal.utils.misc
# https://www.python.org/dev/peps/pep-0508/#environment-markers
PY_VER
=
"
.
"
.
join
(
map
(
str
,
sys
.
version_info
[:
2
]))
SYS_PLAT
=
sys
.
platform
PLAT_SYS
=
platform
.
system
()
PLAT_PY_IMPL
=
platform
.
python_implementation
()
SBoarder
=
collections
.
namedtuple
(
"
SBoarder
"
,
[
"
boarders
"
,
"
extrem
"
,
"
extrem_op
"
])
@@ -140,6 +141,7 @@ def is_in_conditions(condition):
return
eval
(
condition
.
replace
(
"
sys_platform
"
,
'"
%s
"'
%
SYS_PLAT
)
\
.
replace
(
"
python_version
"
,
'"
%s
"'
%
PY_VER
)
\
.
replace
(
"
platform_system
"
,
'"
%s
"'
%
PLAT_SYS
)
\
.
replace
(
"
platform_python_implementation
"
,
'"
%s
"'
%
PLAT_PY_IMPL
))
def
is_in_extra
(
extra
,
req_extra
):
Loading