Skip to content

Commit e1f8912

Browse files
committed
bump s3fs
1 parent 0b3bd7d commit e1f8912

13 files changed

+15
-13
lines changed

ci/deps/actions-310.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
- pyreadstat>=1.1.2
4646
- python-snappy>=0.6.0
4747
- pyxlsb>=1.0.8
48-
- s3fs>=2021.08.0
48+
- s3fs>=2022.03.0
4949
- scipy>=1.7.1
5050
- sqlalchemy>=1.4.16
5151
- tabulate>=0.8.9

ci/deps/actions-311.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
- pyreadstat>=1.1.2
4646
- python-snappy>=0.6.0
4747
- pyxlsb>=1.0.8
48-
- s3fs>=2021.08.0
48+
- s3fs>=2022.03.0
4949
- scipy>=1.7.1
5050
- sqlalchemy>=1.4.16
5151
- tabulate>=0.8.9

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
- pytables>=3.6.1
4646
- python-snappy>=0.6.0
4747
- pyxlsb>=1.0.8
48-
- s3fs>=2021.08.0
48+
- s3fs>=2022.03.0
4949
- scipy>=1.7.1
5050
- sqlalchemy>=1.4.16
5151
- tabulate>=0.8.9

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies:
4848
- pytables=3.6.1
4949
- python-snappy=0.6.0
5050
- pyxlsb=1.0.8
51-
- s3fs=2021.08.0
51+
- s3fs=2022.03.0
5252
- scipy=1.7.1
5353
- sqlalchemy=1.4.16
5454
- tabulate=0.8.9

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
- pytables>=3.6.1
4646
- python-snappy>=0.6.0
4747
- pyxlsb>=1.0.8
48-
- s3fs>=2021.08.0
48+
- s3fs>=2022.03.0
4949
- scipy>=1.7.1
5050
- sqlalchemy>=1.4.16
5151
- tabulate>=0.8.9

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
- pytables>=3.6.1
4646
- python-snappy>=0.6.0
4747
- pyxlsb>=1.0.8
48-
- s3fs>=2021.08.0
48+
- s3fs>=2022.03.0
4949
- scipy>=1.7.1
5050
- sqlalchemy>=1.4.16
5151
- tabulate>=0.8.9

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies:
4646
- pytables>=3.6.1
4747
- python-snappy>=0.6.0
4848
- pyxlsb>=1.0.8
49-
- s3fs>=2021.08.0
49+
- s3fs>=2022.03.0
5050
- scipy>=1.7.1
5151
- sqlalchemy>=1.4.16
5252
- tabulate>=0.8.9

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ fsspec 2022.3.0 fss, gcp, aws Handling files asid
473473
dependency of s3fs, gcsfs).
474474
gcsfs 2022.3.0 gcp Google Cloud Storage access
475475
pandas-gbq 0.15.0 gcp Google Big Query access
476-
s3fs 2021.08.0 aws Amazon S3 access
476+
s3fs 2022.3.0 aws Amazon S3 access
477477
========================= ================== =============== =============================================================
478478

479479
Clipboard

doc/source/whatsnew/v2.1.0.rst

+2
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ Optional libraries below the lowest tested version may still work, but are not c
7979
+-----------------+-----------------+---------+
8080
| gcsfs | 2022.3.0 | X |
8181
+-----------------+-----------------+---------+
82+
| s3fs | 2022.3.0 | X |
83+
+-----------------+-----------------+---------+
8284
See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more.
8385

8486
.. _whatsnew_210.api_breaking.other:

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies:
4848
- pytables>=3.6.1
4949
- python-snappy>=0.6.0
5050
- pyxlsb>=1.0.8
51-
- s3fs>=2021.08.0
51+
- s3fs>=2022.03.0
5252
- scipy>=1.7.1
5353
- sqlalchemy>=1.4.16
5454
- tabulate>=0.8.9

pandas/compat/_optional.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"pyreadstat": "1.1.2",
3636
"pytest": "7.0.0",
3737
"pyxlsb": "1.0.8",
38-
"s3fs": "2021.08.0",
38+
"s3fs": "2022.03.0",
3939
"scipy": "1.7.1",
4040
"snappy": "0.6.0",
4141
"sqlalchemy": "1.4.16",

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ performance = ['bottleneck>=1.3.2', 'numba>=0.53.1', 'numexpr>=2.7.1']
6060
timezone = ['tzdata>=2022.1']
6161
computation = ['scipy>=1.7.1', 'xarray>=0.21.0']
6262
fss = ['fsspec>=2022.03.0']
63-
aws = ['s3fs>=2021.08.0']
63+
aws = ['s3fs>=2022.03.0']
6464
gcp = ['gcsfs>=2022.03.0', 'pandas-gbq>=0.15.0']
6565
excel = ['odfpy>=1.4.1', 'openpyxl>=3.0.7', 'pyxlsb>=1.0.8', 'xlrd>=2.0.1', 'xlsxwriter>=1.4.3']
6666
parquet = ['pyarrow>=7.0.0']
@@ -108,7 +108,7 @@ all = ['beautifulsoup4>=4.9.3',
108108
'pyxlsb>=1.0.8',
109109
'qtpy>=2.2.0',
110110
'scipy>=1.7.1',
111-
's3fs>=2021.08.0',
111+
's3fs>=2022.03.0',
112112
'SQLAlchemy>=1.4.16',
113113
'tables>=3.6.1',
114114
'tabulate>=0.8.9',

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pyreadstat>=1.1.2
3737
tables>=3.6.1
3838
python-snappy>=0.6.0
3939
pyxlsb>=1.0.8
40-
s3fs>=2021.08.0
40+
s3fs>=2022.03.0
4141
scipy>=1.7.1
4242
SQLAlchemy>=1.4.16
4343
tabulate>=0.8.9

0 commit comments

Comments
 (0)