2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 23:48:24 +00:00

support for debian 9

support for debian 9
This commit is contained in:
James Robertson 2017-11-30 08:35:19 -06:00
parent 60b417c9e3
commit 1769ee0f18

View File

@ -115,7 +115,7 @@ def install_bench(args):
shutil.rmtree(tmp_bench_repo)
def check_distribution_compatibility():
supported_dists = {'ubuntu': [14, 15, 16], 'debian': [7, 8],
supported_dists = {'ubuntu': [14, 15, 16], 'debian': [7, 8, 9],
'centos': [7], 'macos': [10.9, 10.10, 10.11, 10.12]}
dist_name, dist_version = get_distribution_info()