Commit 890f02a2 by Ned Batchelder

When installing the local requirements, don't upgrade dependencies. Makes things faster.

parent 592d0448
...@@ -121,7 +121,7 @@ default_options = { ...@@ -121,7 +121,7 @@ default_options = {
task :predjango do task :predjango do
sh("find . -type f -name *.pyc -delete") sh("find . -type f -name *.pyc -delete")
sh('pip install -q --upgrade -r local-requirements.txt') sh('pip install -q --no-index -r local-requirements.txt')
sh('git submodule update --init') sh('git submodule update --init')
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment