Skip to content

Commit 3b0d7ee

Browse files
Allowing an older version of fsspec
1 parent 32add5f commit 3b0d7ee

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

ci/deps/actions-310-minimum_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- blosc=1.21.3
3030
- bottleneck=1.3.6
3131
- fastparquet=2024.2.0
32-
- fsspec=2024.2.0
32+
- fsspec=2023.12.2
3333
- html5lib=1.1
3434
- hypothesis=6.84.0
3535
- gcsfs=2024.0.0

ci/deps/actions-310.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies:
2727
- blosc>=1.21.3
2828
- bottleneck>=1.3.6
2929
- fastparquet>=2024.2.0
30-
- fsspec>=2024.2.0
30+
- fsspec>=2023.12.2
3131
- html5lib>=1.1
3232
- hypothesis>=6.84.0
3333
- gcsfs>=2024.0.0

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies:
2828
- blosc>=1.21.3
2929
- bottleneck>=1.3.6
3030
- fastparquet>=2024.2.0
31-
- fsspec>=2024.2.0
31+
- fsspec>=2023.12.2
3232
- html5lib>=1.1
3333
- hypothesis>=6.84.0
3434
- gcsfs>=2024.0.0

ci/deps/actions-311.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies:
2727
- blosc>=1.21.3
2828
- bottleneck>=1.3.6
2929
- fastparquet>=2024.2.0
30-
- fsspec>=2024.2.0
30+
- fsspec>=2023.12.2
3131
- html5lib>=1.1
3232
- hypothesis>=6.84.0
3333
- gcsfs>=2024.0.0

ci/deps/actions-312.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies:
2727
- blosc>=1.21.3
2828
- bottleneck>=1.3.6
2929
- fastparquet>=2024.2.0
30-
- fsspec>=2024.2.0
30+
- fsspec>=2023.12.2
3131
- html5lib>=1.1
3232
- hypothesis>=6.84.0
3333
- gcsfs>=2024.0.0

doc/source/getting_started/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ Installable with ``pip install "pandas[fss, aws, gcp]"``
330330
============================================ ================== =============== ==========================================================
331331
Dependency Minimum Version pip extra Notes
332332
============================================ ================== =============== ==========================================================
333-
`fsspec <https://github.com/fsspec>`__ 2024.2.0 fss, gcp, aws Handling files aside from simple local and HTTP (required
333+
`fsspec <https://github.com/fsspec>`__ 2023.12.2 fss, gcp, aws Handling files aside from simple local and HTTP (required
334334
dependency of s3fs, gcsfs).
335335
`gcsfs <https://github.com/fsspec/gcsfs>`__ 2024.0.0 gcp Google Cloud Storage access
336336
`s3fs <https://github.com/fsspec/s3fs>`__ 2023.12.2 aws Amazon S3 access

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies:
3030
- blosc
3131
- bottleneck>=1.3.6
3232
- fastparquet>=2024.2.0
33-
- fsspec>=2024.2.0
33+
- fsspec>=2023.12.2
3434
- html5lib>=1.1
3535
- hypothesis>=6.84.0
3636
- gcsfs>=2024.0.0

pandas/compat/_optional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"blosc": "1.21.3",
2727
"bottleneck": "1.3.6",
2828
"fastparquet": "2024.2.0",
29-
"fsspec": "2024.2.0",
29+
"fsspec": "2023.12.2",
3030
"html5lib": "1.1",
3131
"hypothesis": "6.84.0",
3232
"gcsfs": "2024.0.0",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test = ['hypothesis>=6.84.0', 'pytest>=7.3.2', 'pytest-xdist>=3.4.0']
6262
pyarrow = ['pyarrow>=10.0.1']
6363
performance = ['bottleneck>=1.3.6', 'numba>=0.59.0', 'numexpr>=2.9.0']
6464
computation = ['scipy>=1.12.0', 'xarray>=2024.1.1']
65-
fss = ['fsspec>=2024.2.0']
65+
fss = ['fsspec>=2023.12.2']
6666
aws = ['s3fs>=2023.12.2']
6767
gcp = ['gcsfs>=2024.0.0']
6868
excel = ['odfpy>=1.4.1', 'openpyxl>=3.1.2', 'python-calamine>=0.1.7', 'pyxlsb>=1.0.10', 'xlrd>=2.0.1', 'xlsxwriter>=3.2.0']
@@ -90,7 +90,7 @@ all = ['adbc-driver-postgresql>=0.10.0',
9090
#'blosc>=1.21.3',
9191
'bottleneck>=1.3.6',
9292
'fastparquet>=2024.2.0',
93-
'fsspec>=2024.2.0',
93+
'fsspec>=2023.12.2',
9494
'gcsfs>=2024.0.0',
9595
'html5lib>=1.1',
9696
'hypothesis>=6.84.0',

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ beautifulsoup4>=4.12.3
1919
blosc
2020
bottleneck>=1.3.6
2121
fastparquet>=2024.2.0
22-
fsspec>=2024.2.0
22+
fsspec>=2023.12.2
2323
html5lib>=1.1
2424
hypothesis>=6.84.0
2525
gcsfs>=2024.0.0

0 commit comments

Comments
 (0)