From ecb63fce25ff3fe0144cd9757331dc9883d39add Mon Sep 17 00:00:00 2001 From: TizenOpenSource Date: Mon, 11 Mar 2024 10:55:36 +0900 Subject: [PATCH] Fix build error for setuptools 69.0.2 Change-Id: I5f01a0572122fe20d8713dc74692b8ffe5c4df18 Signed-off-by: TizenOpenSource --- pyproject.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5133b07..0cb31c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,6 @@ authors = [ ] readme = "README.rst" requires-python = ">=3.7" -dependencies = [ - "tomli >=1.1.0 ; python_version<'3.11'", -] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", @@ -19,6 +16,11 @@ classifiers = [ ] dynamic = ["version", "description"] +[project.optional-dependencies] +all = [ + "tomli >=1.1.0 ; python_version<'3.11'", +] + [project.urls] Source = "https://github.com/pypa/pyproject-hooks" Documentation = "https://pyproject-hooks.readthedocs.io/" -- 2.34.1