Prechádzať zdrojové kódy

Vagrantfile: cygwin: Fix installation of pip.

cygwin is at python-3.6 now. Use version-independent `ensurepip`
to be future-proof.
Hartmut Goebel 8 rokov pred
rodič
commit
045a676825
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

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