Skip to content

Commit 49d84e3

Browse files
vagrant: use python 3.13.5 for binary building and tests
this is for future betas, not including b19.
1 parent 4905fd8 commit 49d84e3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Vagrantfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def install_pythons(boxname)
213213
return <<-EOF
214214
. ~/.bash_profile
215215
echo "PYTHON_CONFIGURE_OPTS: ${PYTHON_CONFIGURE_OPTS}"
216-
pyenv install 3.12.11
216+
pyenv install 3.13.5
217217
pyenv rehash
218218
EOF
219219
end
@@ -230,9 +230,9 @@ def build_pyenv_venv(boxname)
230230
return <<-EOF
231231
. ~/.bash_profile
232232
cd /vagrant/borg
233-
# use the latest 3.12 release
234-
pyenv global 3.12.11
235-
pyenv virtualenv 3.12.11 borg-env
233+
# use the latest 3.13 release
234+
pyenv global 3.13.5
235+
pyenv virtualenv 3.13.5 borg-env
236236
ln -s ~/.pyenv/versions/borg-env .
237237
EOF
238238
end
@@ -281,8 +281,8 @@ def run_tests(boxname, skip_env)
281281
. ../borg-env/bin/activate
282282
if which pyenv 2> /dev/null; then
283283
# for testing, use the earliest point releases of the supported python versions:
284-
pyenv global 3.12.11
285-
pyenv local 3.12.11
284+
pyenv global 3.13.5
285+
pyenv local 3.13.5
286286
fi
287287
# otherwise: just use the system python
288288
# some OSes can only run specific test envs, e.g. because they miss FUSE support:

0 commit comments

Comments
 (0)