aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-11-02 20:52:01 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2022-11-02 20:52:01 +0200
commita9d4468b16dc716fc34cd2e69319065b10a3ed24 (patch)
tree527cef65075cef9da91283e9a36f1e2e088b2f31
parentsnakeoil/test/*.py: fix f-strings (diff)
downloadsnakeoil-a9d4468b16dc716fc34cd2e69319065b10a3ed24.tar.gz
snakeoil-a9d4468b16dc716fc34cd2e69319065b10a3ed24.tar.bz2
snakeoil-a9d4468b16dc716fc34cd2e69319065b10a3ed24.zip
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@gentoo.org>
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
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 = "radhermit@gmail.com"},
{name = "Arthur Zamarin", email = "arthurzam@gentoo.org"},