From 15452cc014f64ad023bf6dcd3edcae04d412ddc1 Mon Sep 17 00:00:00 2001 From: Johnny Peck Date: Mon, 3 Apr 2023 04:21:50 -0400 Subject: [PATCH] Fix for failing on numpy Fix numpy version to those that support np.object. This popped up today in colab. I'm guessing it will bother others as well. This is bandaid but it works for now. Cheers. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 951a57e..d32768c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,4 +11,5 @@ apache-beam==2.34.0 google-cloud-bigquery-storage==1.1.0 # Suppresses a harmless error from beam natsort==8.1.0 gdown==4.5.4 -tqdm==4.64.1 \ No newline at end of file +tqdm==4.64.1 +numpy<1.24