From 62a834b3f5109a6905ee6c43a3b991701a8070c7 Mon Sep 17 00:00:00 2001 From: Norman Fomferra Date: Wed, 19 Dec 2018 17:22:46 +0100 Subject: [PATCH] requiring Python 3.7 --- src/main/update-backend.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/update-backend.ts b/src/main/update-backend.ts index be7103b..efc9711 100644 --- a/src/main/update-backend.ts +++ b/src/main/update-backend.ts @@ -146,7 +146,7 @@ export class InstallCondaEnv extends Transaction { } fulfill(context: TransactionContext, onProgress: TransactionProgressHandler): Promise { - const command = getCommandInActivatedCondaEnv(this.getCondaDir(), this.getCondaDir(), "conda create --name cate-env -c conda-forge python=3.6"); + const command = getCommandInActivatedCondaEnv(this.getCondaDir(), this.getCondaDir(), "conda create --name cate-env -c conda-forge python=3.7"); notifyExecCommand(command, onProgress); return spawnAsyncAndLog(command, undefined, defaultSpawnShellOption(), onProgress); }