1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-24 16:55:36 +00:00

Vagrantfile: cygwin: Fix installation of pip.

cygwin is at python-3.6 now. Use version-independent `ensurepip`
to be future-proof.
This commit is contained in:
Hartmut Goebel 2017-06-24 19:39:08 +02:00
parent f962659f11
commit 045a676825

2
Vagrantfile vendored
View file

@ -219,7 +219,7 @@ end
def install_cygwin_venv
return <<-EOF
easy_install-3.4 pip
python3 -m ensurepip -U --default-pip
pip install virtualenv
EOF
end