diff --git a/docs/source/install.md b/docs/source/install.md index 84ca33814..398bb134f 100644 --- a/docs/source/install.md +++ b/docs/source/install.md @@ -135,11 +135,11 @@ Woodwork has several other Python dependencies that are used only for specific m | Dependency | Min Version | Notes | |-------------------|-------------|----------------------------------------| -| boto3 | 1.10.45 | Required to read/write to URLs and S3 | +| boto3 | 1.34.32 | Required to read/write to URLs and S3 | | smart_open | 5.0.0 | Required to read/write to URLs and S3 | -| pyarrow | 4.0.1 | Required to serialize to parquet | -| dask[distributed] | 2021.10.0 | Required to use with Dask DataFrames | -| pyspark | 3.2.0 | Required to use with Spark DataFrames | +| pyarrow | 5.0.0 | Required to serialize to parquet | +| dask[distributed] | 2024.1.0 | Required to use with Dask DataFrames | +| pyspark | 3.5.0 | Required to use with Spark DataFrames | # Development diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index b8fc03577..4449666cd 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -25,6 +25,7 @@ Release Notes * Added dask string storage note to "Other Limitations" in Dask documentation :pr:`1799` * Testing Changes * moto >= 5.0.0 renamed ``mock_s3`` to ``mock_aws`` :pr:`1799` + * boto3 >= 1.34.32 :pr:`1799` Thanks to the following people for contributing to this release: :user:`cp2boston`, :user:`gsheni` diff --git a/pyproject.toml b/pyproject.toml index c3fca7b59..be98845ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ test = [ "pytest >= 7.0.1", "pytest-cov >= 2.10.1", "pytest-xdist >= 2.1.0", - "boto3 >= 1.10.45", + "boto3 >= 1.34.32", "moto[all] >= 5.0.0", "smart-open >= 5.0.0", "pyarrow >= 14.0.1" diff --git a/woodwork/tests/requirement_files/minimum_test_requirements.txt b/woodwork/tests/requirement_files/minimum_test_requirements.txt index 101dad520..f5da6d9a9 100644 --- a/woodwork/tests/requirement_files/minimum_test_requirements.txt +++ b/woodwork/tests/requirement_files/minimum_test_requirements.txt @@ -1,4 +1,4 @@ -boto3==1.10.45 +boto3==1.34.32 moto[all]==5.0.0 pyarrow==15.0.0 pytest-cov==2.10.1