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
1219bd75
Commit
1219bd75
authored
Mar 19, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pull Paver requirements out into a separate file
parent
4fbfbf11
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
7 deletions
+10
-7
rakelib/assets_deprecated.rake
+1
-1
rakelib/devstack_deprecated.rake
+1
-1
rakelib/django_deprecated.rake
+1
-1
rakelib/docs_deprecated.rake
+1
-1
rakelib/prereqs_deprecated.rake
+1
-1
requirements/edx/base.txt
+0
-2
requirements/edx/paver.txt
+5
-0
No files found.
rakelib/assets_deprecated.rake
View file @
1219bd75
...
...
@@ -7,7 +7,7 @@ def deprecated(deprecated, deprecated_by, *args)
task
deprecated
,
[
:system
,
:env
]
do
|
t
,
args
|
# Need to install paver dependencies for the commands to work!
sh
(
"pip install
Paver==1.2.1 psutil==1.2.1 lazy==1.1 path.py==3.0.1
"
)
sh
(
"pip install
-r requirements/edx/paver.txt
"
)
args
.
with_defaults
(
:system
=>
"lms"
,
:env
=>
"dev"
)
...
...
rakelib/devstack_deprecated.rake
View file @
1219bd75
...
...
@@ -7,7 +7,7 @@ def deprecated(deprecated, deprecated_by, *args)
task
deprecated
,
[
:system
]
do
|
t
,
args
|
# Need to install paver dependencies for the commands to work!
sh
(
"pip install
Paver==1.2.1 psutil==1.2.1 lazy==1.1 path.py==3.0.1
"
)
sh
(
"pip install
-r requirements/edx/paver.txt
"
)
args
.
with_defaults
(
:system
=>
'lms'
)
deprecated_by
=
"
#{
deprecated_by
}
#{
args
.
system
}
"
...
...
rakelib/django_deprecated.rake
View file @
1219bd75
...
...
@@ -7,7 +7,7 @@ def deprecated(deprecated, deprecated_by)
task
deprecated
,
[
:arg1
,
:arg2
,
:arg3
,
:arg4
]
do
|
t
,
args
|
# Need to install paver dependencies for the commands to work!
sh
(
"pip install
Paver==1.2.1 psutil==1.2.1 lazy==1.1 path.py==3.0.1
"
)
sh
(
"pip install
-r requirements/edx/paver.txt
"
)
if
deprecated
==
"cms"
or
deprecated
==
"lms"
args
.
with_defaults
(
:arg1
=>
"dev"
,
:arg2
=>
""
)
...
...
rakelib/docs_deprecated.rake
View file @
1219bd75
...
...
@@ -7,7 +7,7 @@ def deprecated(deprecated, deprecated_by)
task
deprecated
,
[
:type
,
:quiet
]
do
|
t
,
args
|
# Need to install paver dependencies for the commands to work!
sh
(
"pip install
Paver==1.2.1 psutil==1.2.1 lazy==1.1 path.py==3.0.1
"
)
sh
(
"pip install
-r requirements/edx/paver.txt
"
)
args
.
with_defaults
(
:quiet
=>
"quiet"
)
new_cmd
=
[
deprecated_by
]
...
...
rakelib/prereqs_deprecated.rake
View file @
1219bd75
...
...
@@ -7,7 +7,7 @@ def deprecated(deprecated, deprecated_by)
task
deprecated
do
# Need to install paver dependencies for the commands to work!
sh
(
"pip install
Paver==1.2.1 psutil==1.2.1 lazy==1.1 path.py==3.0.1
"
)
sh
(
"pip install
-r requirements/edx/paver.txt
"
)
puts
(
"Task
#{
deprecated
}
has been deprecated. Use
#{
deprecated_by
}
instead."
.
red
)
sh
(
deprecated_by
)
...
...
requirements/edx/base.txt
View file @
1219bd75
...
...
@@ -49,11 +49,9 @@ nltk==2.0.4
oauthlib==0.5.1
paramiko==1.9.0
path.py==3.0.1
Paver==1.2.1
Pillow==1.7.8
pip>=1.4
polib==1.0.3
psutil==1.2.1
pycrypto>=2.6
pygments==1.6
pygraphviz==1.1
...
...
requirements/edx/paver.txt
0 → 100644
View file @
1219bd75
# Requirements to run Paver
Paver==1.2.1
psutil==1.2.1
lazy==1.1
path.py==3.0.1
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