From e92e373b060e9bfca4e34e25409994df2b9ab2f5 Mon Sep 17 00:00:00 2001 From: Florent Clarret Date: Tue, 23 Jan 2024 10:26:23 +0100 Subject: [PATCH] Prevent `ddev dep` to bump `kubernetes` (#16687) --- ddev/changelog.d/16687.fixed | 1 + ddev/src/ddev/cli/dep.py | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 ddev/changelog.d/16687.fixed diff --git a/ddev/changelog.d/16687.fixed b/ddev/changelog.d/16687.fixed new file mode 100644 index 0000000000000..1c05ab18b60f4 --- /dev/null +++ b/ddev/changelog.d/16687.fixed @@ -0,0 +1 @@ +Prevent `ddev dep` to bump `kubernetes` diff --git a/ddev/src/ddev/cli/dep.py b/ddev/src/ddev/cli/dep.py index 3a22b35a3421a..ef9e8d0801407 100644 --- a/ddev/src/ddev/cli/dep.py +++ b/ddev/src/ddev/cli/dep.py @@ -46,6 +46,9 @@ # cryptography>=42 requires rust>=1.63.0. We have rust 1.62 on centos 6 # https://github.com/DataDog/datadog-agent/pull/22268 'cryptography', + # Brings urllib 2.0.7 which breaks `test_uds_request` in the base check + # https://github.com/kubernetes-client/python/pull/2131 + 'kubernetes', } # Dependencies for the downloader that are security-related and should be updated separately from the others