Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
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
edx
edx-platform
Commits
f3f59d0f
Commit
f3f59d0f
authored
Sep 20, 2013
by
Will Daly
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1074 from edx/will/quiet-pip
Add -q (quiet) flag to pip install
parents
39c61721
6d3df145
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
rakelib/prereqs.rake
+3
-3
No files found.
rakelib/prereqs.rake
View file @
f3f59d0f
...
@@ -29,9 +29,9 @@ task :install_python_prereqs => "ws:migrate" do
...
@@ -29,9 +29,9 @@ task :install_python_prereqs => "ws:migrate" do
unchanged
=
'Python requirements unchanged, nothing to install'
unchanged
=
'Python requirements unchanged, nothing to install'
when_changed
(
unchanged
,
[
'requirements/**/*'
],
[
site_packages_dir
])
do
when_changed
(
unchanged
,
[
'requirements/**/*'
],
[
site_packages_dir
])
do
ENV
[
'PIP_DOWNLOAD_CACHE'
]
||=
'.pip_download_cache'
ENV
[
'PIP_DOWNLOAD_CACHE'
]
||=
'.pip_download_cache'
sh
(
'pip install --exists-action w -r requirements/edx/pre.txt'
)
sh
(
'pip install -
q -
-exists-action w -r requirements/edx/pre.txt'
)
sh
(
'pip install --exists-action w -r requirements/edx/base.txt'
)
sh
(
'pip install -
q -
-exists-action w -r requirements/edx/base.txt'
)
sh
(
'pip install --exists-action w -r requirements/edx/post.txt'
)
sh
(
'pip install -
q -
-exists-action w -r requirements/edx/post.txt'
)
# requirements/private.txt is used to install our libs as
# requirements/private.txt is used to install our libs as
# working dirs, or for personal-use tools.
# working dirs, or for personal-use tools.
if
File
.
file?
(
"requirements/private.txt"
)
if
File
.
file?
(
"requirements/private.txt"
)
...
...
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