diff --git a/attributes/default.rb b/attributes/default.rb index e78d47b..39bf96c 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -35,8 +35,8 @@ default['python']['url'] = 'http://www.python.org/ftp/python' default['python']['version'] = '2.7.7' -default['python']['checksum'] = '3b477554864e616a041ee4d7cef9849751770bc7c39adaf78a94ea145c488059' -default['python']['configure_options'] = %W{--prefix=#{python['prefix_dir']}} +default['python']['checksum'] = '7f49c0a6705ad89d925181e27d0aaa025ee4731ce0de64776c722216c3e66c42' +default['python']['configure_options'] = %W{--prefix=#{node['python']['prefix_dir']}} default['python']['make_options'] = %W{install} default['python']['pip_location'] = "#{node['python']['prefix_dir']}/bin/pip" diff --git a/test/integration/source/bats/source.bats b/test/integration/source/bats/source.bats index ae1fe98..dd35c75 100644 --- a/test/integration/source/bats/source.bats +++ b/test/integration/source/bats/source.bats @@ -4,6 +4,6 @@ [ -x "/usr/local/bin/python" ] } -@test "python should be version 2.7.5" { - /usr/local/bin/python -c 'import sys; print sys.version' | grep '2.7.5' +@test "python should be version 2.7.7" { + /usr/local/bin/python -c 'import sys; print sys.version' | grep '2.7.7' }