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 6EEBE15806E for ; Wed, 17 May 2023 18:30:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE929E081A; Wed, 17 May 2023 18:30:00 +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 91994E081A for ; Wed, 17 May 2023 18:30:00 +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 8B571335D85 for ; Wed, 17 May 2023 18:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25562990 for ; Wed, 17 May 2023 18:29:58 +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: <1684348193.cffc43a5ad3185d5974b7f8c94a3348024ed272c.arthurzam@gentoo> Subject: [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: / X-VCS-Repository: proj/pkgcore/pkgcheck X-VCS-Files: pyproject.toml X-VCS-Directories: / X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: cffc43a5ad3185d5974b7f8c94a3348024ed272c X-VCS-Branch: master Date: Wed, 17 May 2023 18:29:58 +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: 4dac81f5-c16d-4441-aa7d-5b142fba4d6b X-Archives-Hash: 3309a3ee8df894d52ca7ff43d9d3d1d2 commit: cffc43a5ad3185d5974b7f8c94a3348024ed272c Author: Arthur Zamarin gentoo org> AuthorDate: Wed May 17 18:29:53 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Wed May 17 18:29:53 2023 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=cffc43a5 cibuildwheel: upgrade to manylinux_2_28 Signed-off-by: Arthur Zamarin gentoo.org> pyproject.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 92e13cd3..1299f3ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,11 +92,11 @@ test-requires = ["pytest", "requests"] test-command = "pytest {project}/tests" # glibc 2.24 -manylinux-x86_64-image = "manylinux_2_24" -manylinux-i686-image = "manylinux_2_24" -manylinux-aarch64-image = "manylinux_2_24" -manylinux-ppc64le-image = "manylinux_2_24" -manylinux-s390x-image = "manylinux_2_24" +manylinux-x86_64-image = "manylinux_2_28" +manylinux-i686-image = "manylinux_2_28" +manylinux-aarch64-image = "manylinux_2_28" +manylinux-ppc64le-image = "manylinux_2_28" +manylinux-s390x-image = "manylinux_2_28" test-skip = "*-*linux_{aarch64,ppc64le,s390x}" [[tool.cibuildwheel.overrides]] @@ -108,10 +108,10 @@ before-all = [ [[tool.cibuildwheel.overrides]] select = "*-manylinux*" before-all = [ - "apt-get update", - "apt-get install -y git libxml2-dev libxslt-dev", - # "yum update -y", - # "yum install -y git libxslt-devel libxml2-devel", + # "apt-get update", + # "apt-get install -y git libxml2-dev libxslt-dev", + "yum update -y", + "yum install -y git libxslt-devel libxml2-devel", "curl -L \"https://github.com/robxu9/bash-static/releases/download/5.1.016-1.2.3/bash-linux-$(uname -m)\" -o /usr/local/bin/bash", "chmod +x /usr/local/bin/bash",