Skip to content

Commit d26f9ca

Browse files
make pip quieter
1 parent e6db8aa commit d26f9ca

File tree

12 files changed

+7
-15
lines changed

12 files changed

+7
-15
lines changed

k8/images/dask/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ RUN git clone \
1414

1515
RUN --mount=type=cache,target=/root/.cache/pip \
1616
pip install \
17-
-v \
1817
--editable \
1918
'.[complete]' \
2019
pytest \

k8/images/dask/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

k8/images/matplotlib/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ COPY matplotlib.setup.cfg .
2424

2525
RUN --mount=type=cache,target=/root/.cache/pip \
2626
pip install \
27-
-v \
2827
--editable \
2928
. \
3029
pytest \

k8/images/matplotlib/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

k8/images/pandas/Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,13 @@ RUN git clone \
2222

2323
RUN --mount=type=cache,target=/root/.cache/pip \
2424
pip install \
25-
-v \
2625
-r requirements-dev.txt \
2726
pytest-custom_exit_code
2827

2928

3029
RUN python setup.py build_ext --inplace -j 4
3130
RUN --mount=type=cache,target=/root/.cache/pip \
3231
pip install \
33-
-v \
3432
-e . \
3533
--no-build-isolation \
3634
--no-use-pep517

k8/images/pandas/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

k8/images/skimage/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ RUN git clone \
1515
RUN --mount=type=cache,target=/root/.cache/pip \
1616
ls requirements/ \
1717
| grep .txt \
18-
| xargs -n 1 -I% pip install -v -r requirements/%
18+
| xargs -n 1 -I% pip install -r requirements/%
1919

2020
RUN --mount=type=cache,target=/root/.cache/pip \
2121
pip install \
2222
-e \
2323
. \
24-
-v \
2524
pytest-custom_exit_code
2625

2726
RUN python -c "import skimage"

k8/images/skimage/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

k8/images/sklearn/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
2323
--no-build-isolation \
2424
--editable \
2525
. \
26-
-v \
2726
pytest-custom_exit_code
2827

2928
RUN python -c "import sklearn; sklearn.show_versions()"

k8/images/sklearn/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

k8/images/xarray/Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
3030
# Manually convered conda -> pip
3131
RUN --mount=type=cache,target=/root/.cache/pip \
3232
pip install \
33-
-v \
3433
black \
3534
boto3 \
3635
bottleneck \
@@ -74,7 +73,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
7473

7574
RUN --mount=type=cache,target=/root/.cache/pip \
7675
pip install \
77-
-v \
7876
-e \
7977
.
8078

k8/images/xarray/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0
1+
1

0 commit comments

Comments
 (0)