]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-145351: use `--no-install-recommends` (GH-145352) (#145402)
authorThomas Kowalski <thom.kowa@gmail.com>
Sun, 1 Mar 2026 20:41:41 +0000 (21:41 +0100)
committerGitHub <noreply@github.com>
Sun, 1 Mar 2026 20:41:41 +0000 (22:41 +0200)
.github/workflows/build.yml
.github/workflows/posix-deps-apt.sh
.github/workflows/regen-abidump.sh
.github/workflows/reusable-docs.yml

index 9a8bae20929d6716e29d1fde3afedceae9ef87ec..06df118c678dff6fab20176978806dce1b5df6a0 100644 (file)
@@ -62,7 +62,7 @@ jobs:
       - name: Install dependencies
         run: |
             sudo ./.github/workflows/posix-deps-apt.sh
-            sudo apt-get install -yq abigail-tools
+            sudo apt-get install -yq --no-install-recommends abigail-tools
       - name: Build CPython
         env:
           CFLAGS: -g3 -O0
index d5538cd9367ec600426f4c5e0e8ee0d8db73ce48..3557241b1e77900bd051963838b662293295bddc 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 apt-get update
 
-apt-get -yq install \
+apt-get -yq --no-install-recommends install \
     build-essential \
     pkg-config \
     ccache \
index 251bb3857ecfcb64ab6fe7c0e6b2f96b37ed4392..75a1a72e370202467bb92cd801f8aed05179f93c 100644 (file)
@@ -2,7 +2,7 @@ set -ex
 
 export DEBIAN_FRONTEND=noninteractive
 ./.github/workflows/posix-deps-apt.sh
-apt-get install -yq abigail-tools python3
+apt-get install -yq --no-install-recommends abigail-tools python3
 export CFLAGS="-g3 -O0"
 ./configure --enable-shared && make
 make regen-abidump
index fc68c040fca0596c6cf82375e4270c04b60f6e1b..c1e58fd44d37903f98c8c1e06b6e9c6fb6bc66b6 100644 (file)
@@ -92,7 +92,7 @@ jobs:
         restore-keys: |
           ubuntu-doc-
     - name: 'Install Dependencies'
-      run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
+      run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install --no-install-recommends wamerican
     - name: 'Configure CPython'
       run: ./configure --with-pydebug
     - name: 'Build CPython'