Skip to content

Commit

Permalink
chore: remove duckdb_engine from deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Dec 23, 2023
1 parent a3013ef commit a05b1fe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"addLabels": ["bigquery"]
},
{
"matchPackagePatterns": ["duckdb", "duckdb-engine"],
"matchPackagePatterns": ["duckdb"],
"addLabels": ["duckdb"]
},
{
Expand Down
3 changes: 0 additions & 3 deletions ibis/backends/tests/test_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,6 @@ def test_repr_join(benchmark, customers, orders, orders_items, products):
@pytest.mark.parametrize("overwrite", [True, False], ids=["overwrite", "no_overwrite"])
def test_insert_duckdb(benchmark, overwrite, tmp_path):
pytest.importorskip("duckdb")
pytest.importorskip("duckdb_engine")

n_rows = int(1e4)
table_name = "t"
Expand Down Expand Up @@ -806,7 +805,6 @@ def test_duckdb_to_pyarrow(benchmark, sql, ddb) -> None:

def test_ibis_duckdb_to_pyarrow(benchmark, sql, ddb) -> None:
pytest.importorskip("duckdb")
pytest.importorskip("duckdb_engine")

con = ibis.duckdb.connect(ddb, read_only=True)

Expand Down Expand Up @@ -876,7 +874,6 @@ def test_big_join_expr(benchmark, src, diff):

def test_big_join_execute(benchmark, nrels):
pytest.importorskip("duckdb")
pytest.importorskip("duckdb_engine")

con = ibis.duckdb.connect()

Expand Down
21 changes: 3 additions & 18 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ datafusion = { version = ">=0.6,<34", optional = true }
db-dtypes = { version = ">=0.3,<2", optional = true }
deltalake = { version = ">=0.9.0,<1", optional = true }
duckdb = { version = ">=0.8.1,<1", optional = true }
duckdb-engine = { version = ">=0.1.8,<1", optional = true }
geoalchemy2 = { version = ">=0.6.3,<1", optional = true }
geopandas = { version = ">=0.6,<1", optional = true }
google-cloud-bigquery = { version = ">=3,<4", optional = true }
Expand Down Expand Up @@ -155,7 +154,6 @@ all = [
"datafusion",
"db-dtypes",
"duckdb",
"duckdb-engine",
"deltalake",
"geoalchemy2",
"geopandas",
Expand Down Expand Up @@ -191,7 +189,7 @@ clickhouse = ["clickhouse-connect"]
dask = ["dask", "regex"]
datafusion = ["datafusion"]
druid = ["pydruid", "sqlalchemy"]
duckdb = ["duckdb", "duckdb-engine", "sqlalchemy", "sqlalchemy-views"]
duckdb = ["duckdb"]
exasol = ["sqlalchemy", "sqlalchemy-exasol", "sqlalchemy-views"]
flink = []
geospatial = ["geoalchemy2", "geopandas", "shapely"]
Expand Down Expand Up @@ -295,9 +293,6 @@ filterwarnings = [
'ignore:`np\.bool` is a deprecated alias for the builtin `bool`:DeprecationWarning',
# numpy, coming from a pandas call
'ignore:In the future `np\.bool` will be defined as the corresponding NumPy scalar:FutureWarning',
# duckdb-engine
'ignore:Dialect .+ does \*not\* support Decimal:',
"ignore:duckdb-engine doesn't yet support reflection on indices:",
# druid
'ignore:Dialect druid.rest will not make use of SQL compilation caching:',
# ibis
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ decorator==5.1.1 ; python_version >= "3.9" and python_version < "4.0"
deltalake==0.14.0 ; python_version >= "3.9" and python_version < "4.0"
distlib==0.3.8 ; python_version >= "3.9" and python_version < "4.0"
distributed==2023.12.1 ; python_version >= "3.10" and python_version < "3.13"
duckdb-engine==0.9.4 ; python_version >= "3.9" and python_version < "4.0"
duckdb==0.9.2 ; python_version >= "3.9" and python_version < "4.0"
dulwich==0.21.7 ; python_version >= "3.9" and python_version < "4.0"
dunamai==1.19.0 ; python_version >= "3.9" and python_version < "4.0"
Expand Down

0 comments on commit a05b1fe

Please sign in to comment.