We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90b65d commit 29ffc27Copy full SHA for 29ffc27
src/datasets/packaged_modules/pandas/pandas.py
@@ -1,4 +1,5 @@
1
import itertools
2
+import warnings
3
from dataclasses import dataclass
4
from typing import Optional
5
@@ -20,6 +21,10 @@ class Pandas(datasets.ArrowBasedBuilder):
20
21
BUILDER_CONFIG_CLASS = PandasConfig
22
23
def _info(self):
24
+ warnings.warn(
25
+ "The Pandas builder is deprecated and will be removed in the next major version of datasets.",
26
+ FutureWarning,
27
+ )
28
return datasets.DatasetInfo(features=self.config.features)
29
30
def _split_generators(self, dl_manager):
0 commit comments