From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D240158020 for ; Wed, 2 Nov 2022 18:53:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E6ACE09D9; Wed, 2 Nov 2022 18:53:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35F0BE09D9 for ; Wed, 2 Nov 2022 18:53:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 071F0340CC5 for ; Wed, 2 Nov 2022 18:53:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76F915EE for ; Wed, 2 Nov 2022 18:53:06 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1667415121.a9d4468b16dc716fc34cd2e69319065b10a3ed24.arthurzam@gentoo> Subject: [gentoo-commits] proj/pkgcore/snakeoil:master commit in: / X-VCS-Repository: proj/pkgcore/snakeoil X-VCS-Files: pyproject.toml X-VCS-Directories: / X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a9d4468b16dc716fc34cd2e69319065b10a3ed24 X-VCS-Branch: master Date: Wed, 2 Nov 2022 18:53:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8bd9b000-9818-4700-863a-f49954721313 X-Archives-Hash: eac3f3587cdb6139c0a0af29d168f3d4 commit: a9d4468b16dc716fc34cd2e69319065b10a3ed24 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Nov 2 18:52:01 2022 +0000 Commit: Arthur Zamarin gentoo 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 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 = "radhermit@gmail.com"}, {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"},