From 544091c1deec85dbd8203c22a47aa932aa680456 Mon Sep 17 00:00:00 2001 From: Lon Hohberger Date: Tue, 27 Jan 2026 13:02:22 -0500 Subject: [PATCH] Remove tzdata from requirements tzdata is self-described as binary data compiled using zic, which makes it difficult to show end to end provenance for OpenStack users and ISVs. The Python zoneinfo library usually utilizes the operating system's provided time zone data, making this dependency superfluous in most cases. Yet, tools such as 'pip' will install it anyway due to its presence in requirements.txt. It still exists in the global requirements' upper-constraints.txt file, so this project still will install it when running unit tests using tox. Change-Id: I98dde35cb6f5cfe37d4d6c7aa0f3125c4028aed3 Signed-off-by: Lon Hohberger --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a7c0294..0ec3e7b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,3 @@ msgpack>=0.5.2 # Apache-2.0 oslo.utils>=3.33.0 # Apache-2.0 -tzdata>=2022.4 # MIT