Skip to content

Commit 3639c7d

Browse files
pierresouchayPierre Souchayjaidisido
authored
fix: remove constrain on pandas 1.5+ (#2141)
Pandas 1.5.0 had a memory leak with awswrangler, but according to #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. Co-authored-by: Pierre Souchay <[email protected]> Co-authored-by: jaidisido <[email protected]>
1 parent a37a54c commit 3639c7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ python = ">=3.7.1, <4.0"
2929

3030
boto3 = "^1.24.11"
3131
botocore = "^1.27.11"
32-
pandas = "^1.2.0, <=1.5.1, !=1.5.0" # Exclusion per: https://github.com/aws/aws-sdk-pandas/issues/1678
32+
pandas = "^1.2.0, !=1.5.0" # Exclusion per: https://github.com/aws/aws-sdk-pandas/issues/1678
3333
numpy = [
3434
{ version = ">=1.21.0 <=1.23.4", markers = "python_full_version >= '3.7.1' and python_full_version < '3.11.0'" },
3535
{ version = "^1.23.5", markers = "python_full_version >= '3.11.0'" },

0 commit comments

Comments
 (0)