From: Thanh Ha Date: Thu, 30 Apr 2020 23:49:35 +0000 (-0400) Subject: Add support for Ubuntu 20.04 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=2bb8ac365db70ee4f985d925cb205a45ac11388b;p=ansible%2Froles%2Fpython-install.git Add support for Ubuntu 20.04 Ubuntu 20.04 is dropping Python 2 support so many of the packages are either removed or deprecated, need a new list to maintain packages that work. Signed-off-by: Thanh Ha Change-Id: I8a7d0a7fc5ad439d7c1da5c2ba0fc46cd425d3f0 --- diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml index 2f6cdfe..965555b 100644 --- a/molecule/default/molecule.yml +++ b/molecule/default/molecule.yml @@ -12,6 +12,8 @@ platforms: image: centos:7 - name: ubuntu1604 image: ubuntu:16.04 + - name: ubuntu2004 + image: ubuntu:20.04 provisioner: name: ansible scenario: diff --git a/vars/Ubuntu-20.yml b/vars/Ubuntu-20.yml new file mode 100644 index 0000000..47f13a8 --- /dev/null +++ b/vars/Ubuntu-20.yml @@ -0,0 +1,12 @@ +--- +python_packages_distro: + - libffi-dev + - python-is-python3 + - python3 + - python3 + - python3-dev + - python3-openssl + - python3-pip + - python3-setuptools + - python3-virtualenv + - python3-venv