Skip to content

Commit 6efeef7

Browse files
arman-bdclaude
andcommitted
fix: remove libnghttp2-devel from Linux build dependencies
libnghttp2-devel doesn't exist in CentOS 7 repos. We build nghttp2 from source in setup_vendors.sh, so we don't need the system package. Also removed cmake3 fallback since it doesn't exist in manylinux either. The primary cmake package should work on all manylinux versions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 24e1a32 commit 6efeef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ build-verbosity = 1
125125
before-all = [
126126
"sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* || true",
127127
"sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* || true",
128-
"yum install -y cmake openssl-devel libnghttp2-devel zlib-devel pkgconfig autoconf automake libtool golang || yum install -y cmake3 openssl-devel zlib-devel pkgconfig autoconf automake libtool golang",
128+
"yum install -y cmake openssl-devel zlib-devel pkgconfig autoconf automake libtool golang || yum install -y openssl-devel zlib-devel pkgconfig autoconf automake libtool golang",
129129
]
130130
before-build = "bash scripts/setup_vendors.sh"
131131

0 commit comments

Comments
 (0)