From 9a14b153b2e0da9cdc758ad5ec19e47314eb1575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 16 Jan 2023 13:51:17 +0100 Subject: [PATCH] Don't require toml in [test] on Python 3.11+ The test_toml_instead_of_tomli test is skipped on Python 3.11 anyway. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d2f5491f..4fb63f13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,10 +54,10 @@ test = [ "pytest-mock >= 2", "pytest-rerunfailures >= 9.1", "pytest-xdist >= 1.34", - "toml >= 0.10.0", "wheel >= 0.36.0", 'setuptools >= 42.0.0; python_version < "3.10"', 'setuptools >= 56.0.0; python_version >= "3.10"', + 'toml >= 0.10.0; python_version < "3.11"' ] typing = [ "importlib-metadata >= 5.1",