Prechádzať zdrojové kódy

Python 3.4 installs pip automatically

`get-pip` is not required anymore.
INADA Naoki 11 rokov pred
rodič
commit
274ef7a80d
1 zmenil súbory, kde vykonal 3 pridanie a 8 odobranie
  1. 3 8
      toolset/setup/linux/languages/python3.sh

+ 3 - 8
toolset/setup/linux/languages/python3.sh

@@ -3,16 +3,11 @@
 RETCODE=$(fw_exists py3)
 [ ! "$RETCODE" == 0 ] || { return 0; }
 
-fw_get http://www.python.org/ftp/python/3.4.1/Python-3.4.1.tar.xz
-fw_untar Python-3.4.1.tar.xz
+fw_get http://www.python.org/ftp/python/3.4.2/Python-3.4.2.tar.xz
+fw_untar Python-3.4.2.tar.xz
 pre=$(pwd)
-cd Python-3.4.1
+cd Python-3.4.2
 ./configure --prefix=${pre}/py3 --disable-shared --quiet
 make -j4 --quiet
 make install --quiet
 cd ..
-
-if [ ! -f "get-pip.py" ]; then
-fw_get https://bootstrap.pypa.io/get-pip.py -O get-pip.py
-fi
-./py3/bin/python get-pip.py