X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/810efa014aa370e5f828d7fb9f33cb9e22de56e2..699e157e3d708f38064eea9072aa210fe5ccac30:/cookbooks/python/recipes/default.rb?ds=inline diff --git a/cookbooks/python/recipes/default.rb b/cookbooks/python/recipes/default.rb index 14b1e5a87..00f763bac 100644 --- a/cookbooks/python/recipes/default.rb +++ b/cookbooks/python/recipes/default.rb @@ -1,14 +1,14 @@ # -# Cookbook Name:: python +# Cookbook:: python # Recipe:: default # -# Copyright 2017, OpenStreetMap Foundation +# Copyright:: 2017, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -17,5 +17,12 @@ # limitations under the License. # -package "python" -package "python-pip" +if node[:lsb][:release].to_f < 20.04 + package "python" + package "python-pip" +end + +package "python3" +package "python3-pip" + +package "virtualenv"