commit: 24d0e911a0551e718186598d337ddb0ad74ae865
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 8 18:35:04 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 8 18:35:04 2022 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=24d0e911
pyproject.toml: depend on flit_core >=3.8
Makes it cleaner pyproject.toml and less error prone.
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
pyproject.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 3bb5526c..c250cee4 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 = "[email protected]"},
{name = "Arthur Zamarin", email = "[email protected]"},
@@ -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"