Skip to content

Commit

Permalink
fix: remove constrain on pandas 1.5+
Browse files Browse the repository at this point in the history
Pandas 1.5.0 had a memory leak with awswrangler,
but according to aws#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.
  • Loading branch information
Pierre Souchay authored and pierresouchay committed Mar 21, 2023
1 parent 7df0d39 commit ebe087b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'" },
Expand Down

0 comments on commit ebe087b

Please sign in to comment.