From 80bfea74c10dec30a0fa64e1379b80c897b060a9 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Tue, 13 Jul 2021 11:23:09 +0100 Subject: Support TOML v1.0.0 syntax in `pyproject.toml` (#1186) * Support TOML v1.0.0 syntax in `pyproject.toml` fixes #1180 Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> * fix toml meta test * use pytest.mark.parametrize to narrow test failure * Update tests/test_config.py Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index da2df88f..f6fb7b4e 100644 --- a/setup.py +++ b/setup.py @@ -107,7 +107,7 @@ setup_args = dict( extras_require={ # Enable pyproject.toml support. - 'toml': ['toml'], + 'toml': ['tomli'], }, # We need to get HTML assets from our htmlfiles directory. -- cgit v1.2.1