Skip to content

Commit

Permalink
feat(ux): move ibis.expr.selectors to ibis.selectors and deprecat…
Browse files Browse the repository at this point in the history
…e for removal in 6.0
  • Loading branch information
cpcloud committed Mar 30, 2023
1 parent 8618789 commit 0ae639d
Show file tree
Hide file tree
Showing 11 changed files with 499 additions and 491 deletions.
2 changes: 1 addition & 1 deletion docs/api/selectors.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Column Selectors

<!-- prettier-ignore-start -->
::: ibis.expr.selectors
::: ibis.selectors
<!-- prettier-ignore-end -->
2 changes: 1 addition & 1 deletion ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import ibis
import ibis.common.exceptions as com
import ibis.expr.datatypes as dt
import ibis.expr.selectors as s
import ibis.selectors as s
from ibis import _
from ibis import literal as L

Expand Down
3 changes: 1 addition & 2 deletions ibis/expr/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
import ibis.expr.rules as rlz
import ibis.expr.schema as sch
import ibis.expr.types as ir
from ibis import util
from ibis import selectors, util
from ibis.backends.base import BaseBackend, connect
from ibis.common.dispatch import lazy_singledispatch
from ibis.common.exceptions import IbisInputError
from ibis.expr import selectors
from ibis.expr.decompile import decompile
from ibis.expr.deferred import Deferred
from ibis.expr.schema import Schema
Expand Down
Loading

0 comments on commit 0ae639d

Please sign in to comment.