From ebe087b9f8c60a5d01564524ef677c5269f29d00 Mon Sep 17 00:00:00 2001 From: Pierre Souchay Date: Tue, 21 Mar 2023 14:40:25 +0100 Subject: [PATCH] fix: remove constrain on pandas 1.5+ Pandas 1.5.0 had a memory leak with awswrangler, but according to https://github.com/aws/aws-sdk-pandas/issues/1678 it is no longer the case. The current dependency expressed in pyproject.toml locks dependents to use only 1.5.1. Since the bug has been fixed in pandas we can now remove the lock. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d8f4da86e..e3c5bd352 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ python = ">=3.7.1, <4.0" boto3 = "^1.24.11" botocore = "^1.27.11" -pandas = "^1.2.0, <=1.5.1, !=1.5.0" # Exclusion per: https://github.com/aws/aws-sdk-pandas/issues/1678 +pandas = "^1.2.0, !=1.5.0" # Exclusion per: https://github.com/aws/aws-sdk-pandas/issues/1678 numpy = [ { version = ">=1.21.0 <=1.23.4", markers = "python_full_version >= '3.7.1' and python_full_version < '3.11.0'" }, { version = "^1.23.5", markers = "python_full_version >= '3.11.0'" },