From d9ad072bc70a1c8d950ac5f185f0fae3e1030c2a Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 12 Oct 2024 15:08:15 -0400 Subject: [PATCH] condure: migrate to `python@3.13` Signed-off-by: Rui Chen --- Formula/c/condure.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/condure.rb b/Formula/c/condure.rb index 469de36a2bfcc..e5b447e15b4e7 100644 --- a/Formula/c/condure.rb +++ b/Formula/c/condure.rb @@ -21,7 +21,7 @@ class Condure < Formula depends_on "pkg-config" => :build depends_on "rust" => :build depends_on "cython" => :test # use brew cython as building it in test can cause time out - depends_on "python@3.12" => :test + depends_on "python@3.13" => :test depends_on "openssl@3" depends_on "zeromq" @@ -53,7 +53,7 @@ def install ipcfile = testpath/"client" runfile = testpath/"test.py" - python3 = "python3.12" + python3 = "python3.13" ENV.append_path "PYTHONPATH", Formula["cython"].opt_libexec/Language::Python.site_packages(python3) venv = virtualenv_create(testpath/"vendor", python3) venv.pip_install resources.reject { |r| r.name == "pyzmq" }