Skip to content

Commit 8eb6691

Browse files
committed
vunnel: fix build with Python 3.13.x
1 parent 5eac3d8 commit 8eb6691

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Formula/v/vunnel.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,12 @@ class Vunnel < Formula
211211
end
212212

213213
def install
214+
# Remove with next version, already fixed in
215+
# https://github.com/anchore/vunnel/commit/2831a9a55c80f8d6ba31862219e68f796dde7455.patch
216+
inreplace "pyproject.toml" do |s|
217+
s.gsub! 'python = ">=3.11,<=3.13"', 'python = ">=3.11,<3.14"'
218+
end
219+
214220
# Fix compilation of ijson native extensions, note:
215221
# This would not be needed if latest ijson version is used upstream, but there are reasons it is
216222
# currently held back: https://github.com/anchore/vunnel/pull/103

0 commit comments

Comments
 (0)