From 7191e193db1afffad2409a672e3a59f19e8f8b0d Mon Sep 17 00:00:00 2001
From: Maxime Brunet <max@brnt.mx>
Date: Tue, 4 Feb 2025 22:08:51 +0000
Subject: [PATCH] docs(managers/pip-compile): update list of source files and
 managers (#34030)

---
 lib/modules/manager/pip-compile/readme.md | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/lib/modules/manager/pip-compile/readme.md b/lib/modules/manager/pip-compile/readme.md
index 1432bb4f4c..5ef2c4b4d0 100644
--- a/lib/modules/manager/pip-compile/readme.md
+++ b/lib/modules/manager/pip-compile/readme.md
@@ -33,10 +33,12 @@ In turn `pip-compile` manager will find all source files and parse them as packa
 
 The following files are currently supported:
 
-| Source filename | Manager            |
-| --------------: | ------------------ |
-|      `setup.py` | `pip_setup`        |
-|          `*.in` | `pip_requirements` |
+|  Source filename | Manager            |
+| ---------------: | ------------------ |
+|       `setup.py` | `pip_setup`        |
+|      `setup.cfg` | `setup-cfg`        |
+| `pyproject.toml` | `pep621`           |
+| `*.in` / `*.txt` | `pip_requirements` |
 
 Example header:
 
@@ -60,6 +62,12 @@ Because `pip-compile` will update source files with their associated manager you
   },
   "pip_setup": {
     "enabled": false
+  },
+  "setup-cfg": {
+    "enabled": false
+  },
+  "pep621": {
+    "enabled": false
   }
 }
 ```
-- 
GitLab