-
-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Anaconda #409
Conversation
594bbb6
to
b123cce
Compare
manifests/init.pp
Outdated
@@ -85,6 +85,8 @@ | |||
Hash $python_dotfiles = { }, | |||
Boolean $use_epel = $python::params::use_epel, | |||
$rhscl_use_public_repository = $python::params::rhscl_use_public_repository, | |||
String $anaconda_installer_url = $python::params::anaconda_installer_url, | |||
String $anaconda_install_path = $python::params::anaconda_install_path, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be a Stdlib::Absolutepath
?
manifests/init.pp
Outdated
@@ -85,6 +85,8 @@ | |||
Hash $python_dotfiles = { }, | |||
Boolean $use_epel = $python::params::use_epel, | |||
$rhscl_use_public_repository = $python::params::rhscl_use_public_repository, | |||
String $anaconda_installer_url = $python::params::anaconda_installer_url, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be a Stdlib::Httpurl
?
manifests/virtualenv.pp
Outdated
@@ -96,7 +96,8 @@ | |||
$extra_pip_args = '', | |||
$virtualenv = undef | |||
) { | |||
include ::python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason this isn't needed anymore?
Dear maintainers, any update about this enhancement? |
Thanks for the PR @grsakea ! |
Pull Request (PR) description
This PR adds support for the anaconda distribution of python (https://www.anaconda.com/)