2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-11 15:51:03 +00:00

Merge pull request #801 from frappe/ubuntu-19-easy_install

fix(easy_install): add support for Ubuntu 19.04
This commit is contained in:
Saurabh 2019-07-22 15:01:57 +05:30 committed by GitHub
commit 58e42c30ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,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()