File tree Expand file tree Collapse file tree 8 files changed +20
-10
lines changed Expand file tree Collapse file tree 8 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
28
28
# Test install rules
29
29
FROM env AS install_env
30
30
COPY --from=build /home/project/build/python/dist/*.whl ./
31
- RUN python3 -m pip install --break-system-packages \
31
+ RUN python3 -m pip install \
32
+ --break-system-packages \
32
33
--find-links=. \
33
34
cmakepybind11*.whl
34
35
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ RUN pacman -Syu --noconfirm git base-devel cmake
8
8
9
9
# Install Python
10
10
RUN pacman -Syu --noconfirm \
11
- python python-pip python-wheel python-setuptools python-virtualenv
11
+ python python-pip python-wheel python-setuptools \
12
+ python-virtualenv
12
13
13
14
# Add the library src to our build env
14
15
FROM env AS devel
@@ -27,7 +28,8 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
27
28
# Test install rules
28
29
FROM env AS install_env
29
30
COPY --from=build /home/project/build/python/dist/*.whl ./
30
- RUN python3 -m pip install --break-system-packages \
31
+ RUN python3 -m pip install \
32
+ --break-system-packages \
31
33
--find-links=. \
32
34
cmakepybind11*.whl
33
35
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ RUN apt update -qq \
13
13
# Install Python
14
14
RUN apt update -qq \
15
15
&& apt install -yq \
16
- python3-dev python3-pip python3-venv \
16
+ python3-dev python3-pip \
17
+ python3-venv python3-virtualenv \
17
18
python3-setuptools python3-wheel \
18
19
python3-numpy python3-pandas \
19
20
&& apt clean \
@@ -38,7 +39,8 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
38
39
# Test install rules
39
40
FROM env AS install_env
40
41
COPY --from=build /home/project/build/python/dist/*.whl ./
41
- RUN python3 -m pip install --break-system-packages \
42
+ RUN python3 -m pip install \
43
+ --break-system-packages \
42
44
--find-links=. \
43
45
cmakepybind11*.whl
44
46
Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
34
34
# Test install rules
35
35
FROM env AS install_env
36
36
COPY --from=build /home/project/build/python/dist/*.whl ./
37
- RUN python3 -m pip install --find-links=. \
37
+ RUN python3 -m pip install \
38
+ --find-links=. \
38
39
cmakepybind11*.whl
39
40
40
41
FROM install_env AS install_devel
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ RUN ./build-manylinux.sh test
31
31
32
32
FROM env AS install_env
33
33
COPY --from=build /home/project/build*/python/dist/*.whl ./
34
- RUN python3 -m pip install --find-links=. \
34
+ RUN python3 -m pip install \
35
+ --find-links=. \
35
36
cmakepybind11*.whl
36
37
37
38
FROM install_env AS install_devel
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
36
36
# Test install rules
37
37
FROM env AS install_env
38
38
COPY --from=build /home/project/build/python/dist/*.whl ./
39
- RUN python3 -m pip install --break-system-packages \
39
+ RUN python3 -m pip install \
40
+ --break-system-packages \
40
41
--find-links=. \
41
42
cmakepybind11*.whl
42
43
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
49
49
# Test install rules
50
50
FROM env AS install_env
51
51
COPY --from=build /home/project/build/python/dist/*.whl ./
52
- RUN python3 -m pip install --find-links=. \
52
+ RUN python3 -m pip install \
53
+ --find-links=. \
53
54
cmakepybind11*.whl
54
55
55
56
FROM install_env AS install_devel
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ RUN apt update -q \
14
14
# Install Python
15
15
RUN apt update -q \
16
16
&& apt install -yq \
17
- python3-dev python3-pip python3-venv \
17
+ python3-dev python3-pip \
18
+ python3-venv python3-virtualenv \
18
19
python3-setuptools python3-wheel \
19
20
python3-numpy python3-pandas \
20
21
&& apt clean \
You can’t perform that action at this time.
0 commit comments