From 3a23d8ace3a38dc51ca6336834da03e5d15d8e4d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 1 Jun 2022 11:38:02 -0400 Subject: fix: use tomli for [toml] under more precise conditions. #1390 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 96959250..67aedc1b 100644 --- a/setup.py +++ b/setup.py @@ -108,7 +108,7 @@ setup_args = dict( extras_require={ # Enable pyproject.toml support. - 'toml': ['tomli; python_version < "3.11"'], + 'toml': ['tomli; python_full_version<="3.11.0a6"'], }, # We need to get HTML assets from our htmlfiles directory. -- cgit v1.2.1