We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 032211a commit da6b1fcCopy full SHA for da6b1fc
1 file changed
ros2_debian/Dockerfile.debian12
@@ -113,9 +113,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
113
python3-mypy \
114
&& \
115
# colcon-devtools>0.2.3 is not released for debian12, so override it with pip
116
- # typing_extensions needs to be >4.7.0, but is available on apt with 4.4.0 only
117
apt-get remove -y python3-colcon-devtools && \
118
- pip3 install --no-cache-dir colcon-devtools typing_extensions --break-system-packages && \
+ pip3 install --no-cache-dir colcon-devtools --break-system-packages && \
+ # typing_extensions needs to be >4.7.0, but is available on apt with 4.4.0 only
119
+ pip3 install --no-cache-dir --upgrade typing_extensions --break-system-packages && \
120
: "remove cache" && \
121
rm -rf /var/lib/apt/lists/*
122
0 commit comments