EOX GitLab Instance
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vagrant
Builder
Commits
1683acba
Commit
1683acba
authored
Feb 25, 2016
by
Martin Paces
Browse files
Adding pip dependencies to spacepy module.
parent
489d33e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
puppet/modules/spacepy/manifests/init.pp
View file @
1683acba
...
...
@@ -4,8 +4,14 @@ class spacepy {
#
package
{
'python-pip'
:
ensure
=>
'latest'
}
# TODO: pip install Sphinx
# TODO: pip install numpydoc
exec
{
'Sphinx'
:
command
=>
'/bin/pip install Sphinx'
,
require
=>
Package
[
'python-pip'
]
}
exec
{
'numpydoc'
:
command
=>
'/bin/pip install numpydoc'
,
require
=>
Exec
[
'Sphinx'
]
}
package
{
'numpy'
:
ensure
=>
'latest'
}
package
{
'scipy'
:
ensure
=>
'latest'
}
package
{
'h5py'
:
ensure
=>
'latest'
}
...
...
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