From: Stefano Rivera <stefanor@debian.org>
Date: Thu, 4 Feb 2021 20:08:50 -0700
Subject: Disable any attempt to git clone Unicode data

We want to build against Debian-packaged unicode data, not clone from
the Internet during the build.
---
 dateparser_scripts/utils.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dateparser_scripts/utils.py b/dateparser_scripts/utils.py
index a8ba6d1..22a78e0 100644
--- a/dateparser_scripts/utils.py
+++ b/dateparser_scripts/utils.py
@@ -2,10 +2,11 @@ import os
 import shutil
 from collections import OrderedDict
 
-from git import Repo
+#from git import Repo
 
 
 def get_raw_data():
+    return  # Disable git clone for Debian package
     cldr_version = "31.0.1"
     raw_data_directory = "../raw_data"
 
