Skip to content

Commit

Permalink
Manual changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshadrach committed Oct 6, 2023
1 parent 13d0104 commit 7182589
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
)

# let init-time option registration happen
import pandas.core.config_init # pyright: ignore[reportUnusedImport] # noqa: F401

from pandas.core.api import (
# dtype
Expand Down
1 change: 1 addition & 0 deletions pandas/tests/api/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ class TestPDApi(Base):
# private modules in pandas namespace
private_modules = [
"_config",
"_core",
"_libs",
"_is_numpy_dev",
"_pandas_datetime_CAPI",
Expand Down
1 change: 1 addition & 0 deletions pandas/util/_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def test(extra_args: list[str] | None = None, run_doctests: bool = False) -> Non
"--doctest-modules",
"--doctest-cython",
f"--ignore={os.path.join(PKG, 'tests')}",
f"--ignore={os.path.join(PKG, 'core', 'groupby')}",
]
cmd += [PKG]
joined = " ".join(cmd)
Expand Down

0 comments on commit 7182589

Please sign in to comment.