Skip to content

TST: run python-dev CI on 3.14-dev #61950

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
MNT: appease isort
  • Loading branch information
ngoldbaum committed Aug 8, 2025
commit a1a5a6bf8283b2597f9cdc11f117ca552fa0a233
5 changes: 4 additions & 1 deletion pandas/_testing/contexts.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
)
import uuid

from pandas.compat import PYPY, WARNING_CHECK_BROKEN
from pandas.compat import (
PYPY,
WARNING_CHECK_BROKEN,
)
from pandas.errors import ChainedAssignmentError

from pandas.io.common import get_handle
Expand Down
2 changes: 1 addition & 1 deletion pandas/compat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
PY312,
PY314,
PYPY,
WASM,
WARNING_CHECK_BROKEN,
WASM,
)
from pandas.compat.numpy import is_numpy_dev
from pandas.compat.pyarrow import (
Expand Down
5 changes: 4 additions & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@
from pandas._libs.hashtable import duplicated
from pandas._libs.lib import is_range_indexer
from pandas.compat import PYPY
from pandas.compat._constants import REF_COUNT, WARNING_CHECK_BROKEN
from pandas.compat._constants import (
REF_COUNT,
WARNING_CHECK_BROKEN,
)
from pandas.compat._optional import import_optional_dependency
from pandas.compat.numpy import function as nv
from pandas.errors import (
Expand Down
5 changes: 4 additions & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@
npt,
)
from pandas.compat import PYPY
from pandas.compat._constants import REF_COUNT, WARNING_CHECK_BROKEN
from pandas.compat._constants import (
REF_COUNT,
WARNING_CHECK_BROKEN,
)
from pandas.compat._optional import import_optional_dependency
from pandas.compat.numpy import function as nv
from pandas.errors import (
Expand Down
5 changes: 4 additions & 1 deletion pandas/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
from pandas._libs.indexing import NDFrameIndexerBase
from pandas._libs.lib import item_from_zerodim
from pandas.compat import PYPY
from pandas.compat._constants import REF_COUNT, WARNING_CHECK_BROKEN
from pandas.compat._constants import (
REF_COUNT,
WARNING_CHECK_BROKEN,
)
from pandas.errors import (
AbstractMethodError,
ChainedAssignmentError,
Expand Down
5 changes: 4 additions & 1 deletion pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
)
from pandas._libs.lib import is_range_indexer
from pandas.compat import PYPY
from pandas.compat._constants import REF_COUNT, WARNING_CHECK_BROKEN
from pandas.compat._constants import (
REF_COUNT,
WARNING_CHECK_BROKEN,
)
from pandas.compat._optional import import_optional_dependency
from pandas.compat.numpy import function as nv
from pandas.errors import (
Expand Down