File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 62
62
```
63
63
Check that you can install it in a virtualenv/notebook by running:
64
64
```
65
- pip install huggingface-hub fsspec aiohttp pyarrow-hotfix
65
+ pip install huggingface-hub fsspec aiohttp
66
66
pip install -U tqdm
67
67
pip install -i https://testpypi.python.org/pypi datasets
68
68
```
115
115
# Backend and serialization.
116
116
# Minimum 15.0.0 to be able to cast dictionary types to their underlying types
117
117
"pyarrow>=15.0.0" ,
118
- # As long as we allow pyarrow < 14.0.1, to fix vulnerability CVE-2023-47248
119
- "pyarrow-hotfix" ,
120
118
# For smart caching dataset processing
121
119
"dill>=0.3.0,<0.3.9" , # tmp pin until dill has official support for determinism see https://github.com/uqfoundation/dill/issues/19
122
120
# For performance gains with apache arrow
Original file line number Diff line number Diff line change 32
32
import pyarrow as pa
33
33
import pyarrow .compute as pc
34
34
import pyarrow .types
35
- import pyarrow_hotfix # noqa: F401 # to fix vulnerability on pyarrow<14.0.1
36
35
from pandas .api .extensions import ExtensionArray as PandasExtensionArray
37
36
from pandas .api .extensions import ExtensionDtype as PandasExtensionDtype
38
37
You can’t perform that action at this time.
0 commit comments