mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 08:45:13 +00:00
vagrant: use python 3.6.10 for binary build
This commit is contained in:
parent
7ee2dca547
commit
614e0bf86e
1 changed files with 5 additions and 5 deletions
10
Vagrantfile
vendored
10
Vagrantfile
vendored
|
@ -134,7 +134,7 @@ def install_pythons(boxname)
|
||||||
. ~/.bash_profile
|
. ~/.bash_profile
|
||||||
pyenv install 3.8.0 # tests, version supporting openssl 1.1
|
pyenv install 3.8.0 # tests, version supporting openssl 1.1
|
||||||
pyenv install 3.7.0 # tests, version supporting openssl 1.1
|
pyenv install 3.7.0 # tests, version supporting openssl 1.1
|
||||||
pyenv install 3.6.9 # binary build, tests, version supporting openssl 1.1
|
pyenv install 3.6.10 # binary build, tests, version supporting openssl 1.1
|
||||||
pyenv rehash
|
pyenv rehash
|
||||||
EOF
|
EOF
|
||||||
end
|
end
|
||||||
|
@ -152,8 +152,8 @@ def build_pyenv_venv(boxname)
|
||||||
. ~/.bash_profile
|
. ~/.bash_profile
|
||||||
cd /vagrant/borg
|
cd /vagrant/borg
|
||||||
# use the latest 3.6 release
|
# use the latest 3.6 release
|
||||||
pyenv global 3.6.9
|
pyenv global 3.6.10
|
||||||
pyenv virtualenv 3.6.9 borg-env
|
pyenv virtualenv 3.6.10 borg-env
|
||||||
ln -s ~/.pyenv/versions/borg-env .
|
ln -s ~/.pyenv/versions/borg-env .
|
||||||
EOF
|
EOF
|
||||||
end
|
end
|
||||||
|
@ -214,8 +214,8 @@ def run_tests(boxname)
|
||||||
. ../borg-env/bin/activate
|
. ../borg-env/bin/activate
|
||||||
if which pyenv 2> /dev/null; then
|
if which pyenv 2> /dev/null; then
|
||||||
# for testing, use the earliest point releases of the supported python versions:
|
# for testing, use the earliest point releases of the supported python versions:
|
||||||
pyenv global 3.6.9 3.7.0 3.8.0
|
pyenv global 3.6.10 3.7.0 3.8.0
|
||||||
pyenv local 3.6.9 3.7.0 3.8.0
|
pyenv local 3.6.10 3.7.0 3.8.0
|
||||||
fi
|
fi
|
||||||
# otherwise: just use the system python
|
# otherwise: just use the system python
|
||||||
if which fakeroot 2> /dev/null; then
|
if which fakeroot 2> /dev/null; then
|
||||||
|
|
Loading…
Reference in a new issue