Merge pull request #483 from rokroskar/000-accepts-newer-python

chore: accept newer python versions
This commit is contained in:
DavHau 2022-07-05 10:35:25 +02:00 committed by GitHub
commit ea5c100907
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',