From 09d0ff8471fe44638e8b5b907a467a1259af8a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rok=20Ro=C5=A1kar?= Date: Mon, 4 Jul 2022 15:42:27 +0200 Subject: [PATCH] chore: accept newer python versions --- mach_nix/run.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mach_nix/run.py b/mach_nix/run.py index 4fbdf02..eb0effe 100644 --- a/mach_nix/run.py +++ b/mach_nix/run.py @@ -171,9 +171,9 @@ def github_rev_and_sha256(owner, repo, ref): def parse_args(parser: ArgumentParser, nixpkgs_ref): common_arguments = ( (('-p', '--python'), dict( - help='select python version (default: 3.7)', - choices=('2.7', '3.5', '3.6', '3.7', '3.8'), - default='3.7')), + help='select python version (default: 3.9)', + choices=('2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'), + default='3.9')), (('-r',), dict( help='path to requirements.txt file',