From 18559f9196e73912b3fc77384cfc306e0b3f3f70 Mon Sep 17 00:00:00 2001 From: guillemcortes Date: Fri, 5 May 2023 17:33:16 +0200 Subject: [PATCH] black check with python3.9 instead of python3.8 at tox.ini --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 2357ccf4d..f6f20f8d7 100644 --- a/tox.ini +++ b/tox.ini @@ -19,13 +19,13 @@ commands = basepython=python3.9 deps = black commands = - black --check --target-version py38 {toxinidir}/mirdata {toxinidir}/tests + black --check --target-version py39 {toxinidir}/mirdata {toxinidir}/tests [testenv:format] basepython=python3.9 deps = black commands = - black --target-version py38 {toxinidir}/mirdata {toxinidir}/tests + black --target-version py39 {toxinidir}/mirdata {toxinidir}/tests [testenv:mypy] basepython=python3.9