Skip to content

Commit 087671d

Browse files
authored
packaging: Remove useless dependencies (#6971)
1 parent 68f6774 commit 087671d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
```
6363
Check that you can install it in a virtualenv/notebook by running:
6464
```
65-
pip install huggingface-hub fsspec aiohttp pyarrow-hotfix
65+
pip install huggingface-hub fsspec aiohttp
6666
pip install -U tqdm
6767
pip install -i https://testpypi.python.org/pypi datasets
6868
```
@@ -115,8 +115,6 @@
115115
# Backend and serialization.
116116
# Minimum 15.0.0 to be able to cast dictionary types to their underlying types
117117
"pyarrow>=15.0.0",
118-
# As long as we allow pyarrow < 14.0.1, to fix vulnerability CVE-2023-47248
119-
"pyarrow-hotfix",
120118
# For smart caching dataset processing
121119
"dill>=0.3.0,<0.3.9", # tmp pin until dill has official support for determinism see https://github.com/uqfoundation/dill/issues/19
122120
# For performance gains with apache arrow

src/datasets/features/features.py

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import pyarrow as pa
3333
import pyarrow.compute as pc
3434
import pyarrow.types
35-
import pyarrow_hotfix # noqa: F401 # to fix vulnerability on pyarrow<14.0.1
3635
from pandas.api.extensions import ExtensionArray as PandasExtensionArray
3736
from pandas.api.extensions import ExtensionDtype as PandasExtensionDtype
3837

0 commit comments

Comments
 (0)