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 8bc0832 commit dbe39f1Copy full SHA for dbe39f1
pandas/__init__.py
@@ -21,18 +21,6 @@
21
# numpy compat
22
from pandas.compat import is_numpy_dev as _is_numpy_dev
23
24
-try:
25
- from pandas._libs import hashtable as _hashtable, lib as _lib, tslib as _tslib
26
-except ImportError as err: # pragma: no cover
27
- module = err.name
28
- raise ImportError(
29
- f"C extension: {module} not built. If you want to import "
30
- "pandas from the source directory, you may need to run "
31
- "'python setup.py build_ext --force' to build the C extensions first."
32
- ) from err
33
-else:
34
- del _tslib, _lib, _hashtable
35
-
36
from pandas._config import (
37
get_option,
38
set_option,
0 commit comments