From 81330fd894db79ad0a6767b948a59b3ebee63dbb Mon Sep 17 00:00:00 2001 From: Chinmay Pai Date: Thu, 9 May 2019 23:51:10 +0530 Subject: [PATCH] fix(easy_install): add support for Ubuntu 19.04 --- playbooks/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/install.py b/playbooks/install.py index 5cc4afc9..4782480c 100644 --- a/playbooks/install.py +++ b/playbooks/install.py @@ -129,7 +129,7 @@ def install_bench(args): shutil.rmtree(tmp_bench_repo) def check_distribution_compatibility(): - supported_dists = {'ubuntu': [14, 15, 16, 18], 'debian': [8, 9], + supported_dists = {'ubuntu': [14, 15, 16, 18, 19], 'debian': [8, 9], 'centos': [7], 'macos': [10.9, 10.10, 10.11, 10.12]} dist_name, dist_version = get_distribution_info()