8000 deleted extra pip upgrades · scikit-learn/scikit-learn@3a4fd5f · GitHub
[go: up one dir, main page]

Skip to content

Commit 3a4fd5f

Browse files
committed
deleted extra pip upgrades
1 parent daa0e64 commit 3a4fd5f

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

build_tools/azure/install.cmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ IF "%PYTHON_ARCH%"=="64" (
1414
conda create -n %VIRTUALENV% -q -y python=%PYTHON_VERSION% numpy scipy cython matplotlib wheel pillow joblib
1515

1616
call activate %VIRTUALENV%
17-
pip install -U pip
1817
IF "%PYTEST_VERSION%"=="*" (
1918
pip install pytest
2019
) else (

build_tools/azure/install.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ make_conda() {
88
TO_INSTALL="$@"
99
conda create -n $VIRTUALENV --yes $TO_INSTALL
1010
source activate $VIRTUALENV
11-
pip install -U pip
1211
}
1312

1413
version_ge() {
@@ -78,21 +77,18 @@ elif [[ "$DISTRIB" == "ubuntu" ]]; then
7877
sudo apt-get install python3-scipy python3-matplotlib libatlas3-base libatlas-base-dev libatlas-dev python3-virtualenv
7978
python3 -m virtualenv --system-site-packages --python=python3 $VIRTUALENV
8079
source $VIRTUALENV/bin/activate
81-
python -m pip install -U pip
8280
python -m pip install pytest==$PYTEST_VERSION pytest-cov cython joblib==$JOBLIB_VERSION
8381
elif [[ "$DISTRIB" == "ubuntu-32" ]]; then
8482
apt-get update
8583
apt-get install -y python3-dev python3-scipy python3-matplotlib libatlas3-base libatlas-base-dev libatlas-dev python3-virtualenv
8684
python3 -m virtualenv --system-site-packages --python=python3 $VIRTUALENV
8785
source $VIRTUALENV/bin/activate
88-
python -m pip install -U pip
8986
python -m pip install pytest==$PYTEST_VERSION pytest-cov cython joblib==$JOBLIB_VERSION
9087
elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
9188
# Since conda main channel usually lacks behind on the latest releases,
9289
# we use pypi to test against the latest releases of the dependencies.
9390
# conda is still used as a convenient way to install Python and pip.
9491
make_conda "python=$PYTHON_VERSION"
95-
python -m pip install -U pip
9692
python -m pip install numpy scipy joblib cython
9793
python -m pip install pytest==$PYTEST_VERSION pytest-cov pytest-xdist
9894
python -m pip install pandas matplotlib pyamg

build_tools/circle/build_doc.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ conda create -n $CONDA_ENV_NAME --yes --quiet python="${PYTHON_VERSION:-*}" \
133133
joblib memory_profiler
134134

135135
source activate testenv
136-
pip install -U pip
137136
pip install sphinx-gallery==0.3.1
138137
pip install numpydoc==0.9
139138

0 commit comments

Comments
 (0)
0