From 350bf6add50f72696504004ddc3e31b2b13ca017 Mon Sep 17 00:00:00 2001 From: Florent Clarret Date: Tue, 23 Jan 2024 10:06:29 +0100 Subject: [PATCH] Prevent `ddev dep` to bump `cryptography` (#16686) --- ddev/changelog.d/16686.fixed | 1 + ddev/src/ddev/cli/dep.py | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 ddev/changelog.d/16686.fixed diff --git a/ddev/changelog.d/16686.fixed b/ddev/changelog.d/16686.fixed new file mode 100644 index 0000000000000..dae1262fbde6b --- /dev/null +++ b/ddev/changelog.d/16686.fixed @@ -0,0 +1 @@ +Prevent `ddev dep` to bump `cryptography` diff --git a/ddev/src/ddev/cli/dep.py b/ddev/src/ddev/cli/dep.py index e396a44c61762..3a22b35a3421a 100644 --- a/ddev/src/ddev/cli/dep.py +++ b/ddev/src/ddev/cli/dep.py @@ -43,6 +43,9 @@ 'orjson', # 2.4.10 is broken on py2 and they did not yank the version 'rethinkdb', + # cryptography>=42 requires rust>=1.63.0. We have rust 1.62 on centos 6 + # https://github.com/DataDog/datadog-agent/pull/22268 + 'cryptography', } # Dependencies for the downloader that are security-related and should be updated separately from the others