Skip to content

Commit 43eaa1b

Browse files
Pierre Souchaypierresouchay
Pierre Souchay
authored andcommitted
fix: remove constrain on pandas 1.5+
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.
1 parent a81ae5e commit 43eaa1b

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)