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 928DE158020 for ; Tue, 8 Nov 2022 18:38:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3EB3E09F8; Tue, 8 Nov 2022 18:38:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A526FE09F5 for ; Tue, 8 Nov 2022 18:38:41 +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 D292D3406C2 for ; Tue, 8 Nov 2022 18:38:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 645D8617 for ; Tue, 8 Nov 2022 18:38:39 +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: <1667932504.24d0e911a0551e718186598d337ddb0ad74ae865.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: 24d0e911a0551e718186598d337ddb0ad74ae865 X-VCS-Branch: master Date: Tue, 8 Nov 2022 18:38:39 +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: 1d70c321-917e-48f8-9d16-37616b0832ce X-Archives-Hash: 92b587906d8d8da29013360f6ca126fe commit: 24d0e911a0551e718186598d337ddb0ad74ae865 Author: Arthur Zamarin gentoo org> AuthorDate: Tue Nov 8 18:35:04 2022 +0000 Commit: Arthur Zamarin gentoo 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 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 = "radhermit@gmail.com"}, {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"}, @@ -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"