From e3b8a3a502856fe6bb8358e546d23138b5eaf743 Mon Sep 17 00:00:00 2001 From: Callahan Date: Fri, 27 Oct 2023 15:55:09 -0500 Subject: [PATCH] chore(pyproject): quote versions (#4423) Signed-off-by: Callahan Kovacs --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2b7f8f9b5c..53c4391636 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ load-plugins = "pylint_fixme_info,pylint_pytest" min-similarity-lines=10 [tool.mypy] -python_version = 3.10 +python_version = "3.10" ignore_missing_imports = true follow_imports = "silent" exclude = [ @@ -69,7 +69,7 @@ exclude = ["build", "tests/legacy", "tests/spread"] pythonVersion = "3.10" [tool.pytest.ini_options] -minversion = 7.0 +minversion = "7.0" required_plugins = ["pytest-cov>=4.0", "pytest-mock>=3.10", "pytest-subprocess>=1.4"] addopts = ["--cov=snapcraft"]