Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pkgcore/snakeoil:master commit in: /
Date: Wed, 02 Nov 2022 18:53:10
Message-Id: 1667415121.a9d4468b16dc716fc34cd2e69319065b10a3ed24.arthurzam@gentoo
1 commit: a9d4468b16dc716fc34cd2e69319065b10a3ed24
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 18:52:01 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 18:52:01 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=a9d4468b
7
8 pyproject.toml: fix the wheel tag
9
10 When using ~=, it still thinks that py2 tag is correct. With using >=,
11 flit tags it as just py3.
12
13 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
14
15 pyproject.toml | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/pyproject.toml b/pyproject.toml
19 index 47ece45f..3bb5526c 100644
20 --- a/pyproject.toml
21 +++ b/pyproject.toml
22 @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
23 name = "snakeoil"
24 description = "misc common functionality and useful optimizations"
25 readme = "README.rst"
26 -requires-python = "~=3.8"
27 +requires-python = ">=3.8"
28 authors = [
29 {name = "Tim Harder", email = "radhermit@×××××.com"},
30 {name = "Arthur Zamarin", email = "arthurzam@g.o"},