commit: a9d4468b16dc716fc34cd2e69319065b10a3ed24
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 2 18:52:01 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 2 18:52:01 2022 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=a9d4468b
pyproject.toml: fix the wheel tag
When using ~=, it still thinks that py2 tag is correct. With using >=,
flit tags it as just py3.
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 47ece45f..3bb5526c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
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]"},