From d36ed1d1772491e52a1e8cbe221cd1d58aa373c6 Mon Sep 17 00:00:00 2001 From: Suraj Pasuparthy Date: Thu, 19 Oct 2023 10:26:02 -0700 Subject: [PATCH] fix pytz dependency for python 3.11 pytz versioning has changed from 2011 to 2023.<1,2,3> the other versioning uses UserDict from collections which is moved out for 3.11 so any apps that run on 3.11 requiring python-datetime-tz will not work unless this dependency is fixed. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 63e0490..19cbc28 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ defusedxml python-dateutil -pytz>=2011g +pytz>=2023.3