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
!6
Fix showing 0.0.0 version
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Fix showing 0.0.0 version
ver
into
master
Overview
0
Commits
1
Pipelines
6
Changes
3
Merged
Fix showing 0.0.0 version
Marek Chrastina
requested to merge
ver
into
master
Oct 21, 2019
Overview
0
Commits
1
Pipelines
6
Changes
3
0
0
Merge request reports
Compare
master
version 5
c9acd31f
Oct 21, 2019
version 4
5360bca3
Oct 21, 2019
version 3
921a406e
Oct 21, 2019
version 2
93cacbb2
Oct 21, 2019
version 1
faec6bb1
Oct 21, 2019
master (base)
and
latest version
latest version
f7e6c162
1 commit,
Oct 21, 2019
version 5
c9acd31f
1 commit,
Oct 21, 2019
version 4
5360bca3
1 commit,
Oct 21, 2019
version 3
921a406e
1 commit,
Oct 21, 2019
version 2
93cacbb2
1 commit,
Oct 21, 2019
version 1
faec6bb1
1 commit,
Oct 21, 2019
3 files
+
6
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
pipdeps/pipdeps.py
+
2
−
0
View file @ f7e6c162
Edit in single-file editor
Open in Web IDE
Show full file
@@ -55,6 +55,8 @@ def upgrade_package(data):
"""
pip install --upgrade
"
<package>==<versions>
"
"""
if
not
data
:
return
to_upgrade
=
[]
for
package
,
version
in
data
:
to_upgrade
.
append
(
"
%s==%s
"
%
(
package
,
version
))
Loading