Explorar o código

Vagrantfile: cygwin: Fix installation of pip.

cygwin is at python-3.6 now. Use version-independent `ensurepip`
to be future-proof.
Hartmut Goebel %!s(int64=8) %!d(string=hai) anos
pai
achega
045a676825
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -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