From c96fe77d2ec99b06051323b1658b6fafa2e3b421 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 24 Dec 2023 01:21:42 +0100 Subject: [PATCH] vagrant: use freebsd 14, fixes #6871 --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 6f8053b8..bc00ea71 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -45,9 +45,9 @@ def packages_freebsd pkg install -y fusefs-libs3 || true pkg install -y git bash # fakeroot causes lots of troubles on freebsd # for building python (for the tests we use pyenv built pythons): - pkg install -y python39 py39-sqlite3 + pkg install -y python310 py310-sqlite3 # make sure there is a python3 command - ln -sf /usr/local/bin/python3.9 /usr/local/bin/python3 + ln -sf /usr/local/bin/python3.10 /usr/local/bin/python3 python3 -m ensurepip pip3 install virtualenv # make bash default / work: @@ -443,7 +443,7 @@ Vagrant.configure(2) do |config| end config.vm.define "freebsd64" do |b| - b.vm.box = "generic/freebsd13" + b.vm.box = "generic/freebsd14" b.vm.provider :virtualbox do |v| v.memory = 1024 + $wmem end