Skip to content

Commit 4ce7da8

Browse files
committed
address tests, bump gcsfs
1 parent dd27604 commit 4ce7da8

14 files changed

+16
-14
lines changed

ci/deps/actions-310.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- fsspec>=2022.03.0
3030
- html5lib>=1.1
3131
- hypothesis>=6.34.2
32-
- gcsfs>=2021.07.0
32+
- gcsfs>=2022.03.0
3333
- jinja2>=3.0.0
3434
- lxml>=4.6.3
3535
- matplotlib>=3.6.1, <3.7.0

ci/deps/actions-311.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- fsspec>=2022.03.0
3030
- html5lib>=1.1
3131
- hypothesis>=6.34.2
32-
- gcsfs>=2021.07.0
32+
- gcsfs>=2022.03.0
3333
- jinja2>=3.0.0
3434
- lxml>=4.6.3
3535
- matplotlib>=3.6.1, <3.7.0

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies:
3030
- fsspec>=2022.03.0
3131
- html5lib>=1.1
3232
- hypothesis>=6.34.2
33-
- gcsfs>=2021.07.0
33+
- gcsfs>=2022.03.0
3434
- jinja2>=3.0.0
3535
- lxml>=4.6.3
3636
- matplotlib>=3.6.1, <3.7.0

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
- fsspec=2022.03.0
3232
- html5lib=1.1
3333
- hypothesis=6.34.2
34-
- gcsfs=2021.07.0
34+
- gcsfs=2022.03.0
3535
- jinja2=3.0.0
3636
- lxml=4.6.3
3737
- matplotlib=3.6.1

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- fsspec>=2022.03.0
3030
- html5lib>=1.1
3131
- hypothesis>=6.34.2
32-
- gcsfs>=2021.07.0
32+
- gcsfs>=2022.03.0
3333
- jinja2>=3.0.0
3434
- lxml>=4.6.3
3535
- matplotlib>=3.6.1, <3.7.0

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- fsspec>=2022.03.0
3030
- html5lib>=1.1
3131
- hypothesis>=6.34.2
32-
- gcsfs>=2021.07.0
32+
- gcsfs>=2022.03.0
3333
- jinja2>=3.0.0
3434
- lxml>=4.6.3
3535
- matplotlib>=3.6.1, <3.7.0

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- fsspec>=2022.03.0
3030
- html5lib>=1.1
3131
- hypothesis>=6.34.2
32-
- gcsfs>=2021.07.0
32+
- gcsfs>=2022.03.0
3333
- jinja2>=3.0.0
3434
- lxml>=4.6.3
3535
- matplotlib>=3.6.1, <3.7.0

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ Dependency Minimum Version pip extra Notes
471471
========================= ================== =============== =============================================================
472472
fsspec 2022.3.0 fss, gcp, aws Handling files aside from simple local and HTTP (required
473473
dependency of s3fs, gcsfs).
474-
gcsfs 2021.7.0 gcp Google Cloud Storage access
474+
gcsfs 2022.3.0 gcp Google Cloud Storage access
475475
pandas-gbq 0.15.0 gcp Google Big Query access
476476
s3fs 2021.08.0 aws Amazon S3 access
477477
========================= ================== =============== =============================================================

doc/source/whatsnew/v2.1.0.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ Optional libraries below the lowest tested version may still work, but are not c
7777
+=================+=================+=========+
7878
| fsspec | 2022.3.0 | X |
7979
+-----------------+-----------------+---------+
80-
80+
| gcsfs | 2022.3.0 | X |
81+
+-----------------+-----------------+---------+
8182
See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more.
8283

8384
.. _whatsnew_210.api_breaking.other:

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
- fsspec>=2022.03.0
3232
- html5lib>=1.1
3333
- hypothesis>=6.34.2
34-
- gcsfs>=2021.07.0
34+
- gcsfs>=2022.03.0
3535
- ipython
3636
- jinja2>=3.0.0
3737
- lxml>=4.6.3

pandas/compat/_optional.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"fsspec": "2022.03.0",
2121
"html5lib": "1.1",
2222
"hypothesis": "6.34.2",
23-
"gcsfs": "2021.07.0",
23+
"gcsfs": "2022.03.0",
2424
"jinja2": "3.0.0",
2525
"lxml.etree": "4.6.3",
2626
"matplotlib": "3.6.1",

pandas/tests/io/test_parquet.py

+1
Original file line numberDiff line numberDiff line change
@@ -1227,6 +1227,7 @@ def test_bytes_file_name(self, engine):
12271227
tm.assert_frame_equal(result, df)
12281228

12291229
def test_filesystem_notimplemented(self):
1230+
pytest.importorskip("fastparquet")
12301231
df = pd.DataFrame(data={"A": [0, 1], "B": [1, 0]})
12311232
with pytest.raises(NotImplementedError, match="filesystem is not implemented"):
12321233
with tm.ensure_clean() as path:

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ timezone = ['tzdata>=2022.1']
6161
computation = ['scipy>=1.7.1', 'xarray>=0.21.0']
6262
fss = ['fsspec>=2022.03.0']
6363
aws = ['s3fs>=2021.08.0']
64-
gcp = ['gcsfs>=2021.07.0', 'pandas-gbq>=0.15.0']
64+
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']
6767
feather = ['pyarrow>=7.0.0']
@@ -85,7 +85,7 @@ all = ['beautifulsoup4>=4.9.3',
8585
'brotlipy>=0.7.0',
8686
'fastparquet>=0.6.3',
8787
'fsspec>=2022.03.0',
88-
'gcsfs>=2021.07.0',
88+
'gcsfs>=2022.03.0',
8989
'html5lib>=1.1',
9090
'hypothesis>=6.34.2',
9191
'jinja2>=3.0.0',

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fastparquet>=0.6.3
2020
fsspec>=2022.03.0
2121
html5lib>=1.1
2222
hypothesis>=6.34.2
23-
gcsfs>=2021.07.0
23+
gcsfs>=2022.03.0
2424
ipython
2525
jinja2>=3.0.0
2626
lxml>=4.6.3

0 commit comments

Comments
 (0)