From 24d0e911a0551e718186598d337ddb0ad74ae865 Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Tue, 8 Nov 2022 20:35:04 +0200 Subject: pyproject.toml: depend on flit_core >=3.8 Makes it cleaner pyproject.toml and less error prone. Signed-off-by: Arthur Zamarin --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3bb5526..c250cee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [build-system] -requires = ["flit_core >=3.7,<4"] +requires = ["flit_core >=3.8,<4"] build-backend = "flit_core.buildapi" [project] name = "snakeoil" description = "misc common functionality and useful optimizations" readme = "README.rst" -requires-python = ">=3.8" +requires-python = "~=3.8" authors = [ {name = "Tim Harder", email = "radhermit@gmail.com"}, {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"}, @@ -42,7 +42,7 @@ Source = "https://github.com/pkgcore/snakeoil" [tool.flit.sdist] include = ["doc", "tox.ini", "tests", "Makefile", "NEWS.rst"] -exclude = [".github/", ".gitignore", "doc/api/", "tests/__pycache__", "tests/cli/__pycache__"] +exclude = [".github/", ".gitignore", "doc/api/"] [tool.pytest.ini_options] minversion = "6.0" -- cgit v1.2.3-65-gdbad