Skip to content

Commit

Permalink
[duckdb] remove duckdb<0.10.0 pin (dagster-io#19777)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Feb 15, 2024
1 parent 15ff651 commit c95c0a7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions python_modules/libraries/dagster-dbt/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ deps =
-e ../dagster-duckdb-pandas
dbt_15X: dbt-core==1.5.*
dbt_15X: dbt-duckdb==1.5.*
dbt_15X: duckdb<0.10.0
dbt_16X: dbt-core==1.6.*
dbt_16X: dbt-duckdb==1.6.*
dbt_17X: dbt-core==1.7.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def test_static_partitioned_asset(tmp_path, io_managers):
}
),
key_prefix=["my_schema"],
metadata={"partition_expr": {"time": "CAST(time as TIMESTAMP)", "color": "color"}},
metadata={"partition_expr": {"time": "CAST(time as DATE)", "color": "color"}},
config_schema={"value": str},
)
def multi_partitioned(context) -> pd.DataFrame:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def test_static_partitioned_asset(tmp_path, io_managers):
}
),
key_prefix=["my_schema"],
metadata={"partition_expr": {"time": "CAST(time as TIMESTAMP)", "color": "color"}},
metadata={"partition_expr": {"time": "CAST(time as DATE)", "color": "color"}},
config_schema={"value": str},
)
def multi_partitioned(context) -> pl.DataFrame:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def test_static_partitioned_asset(tmp_path, io_managers):
}
),
key_prefix=["my_schema"],
metadata={"partition_expr": {"time": "CAST(time as TIMESTAMP)", "color": "color"}},
metadata={"partition_expr": {"time": "CAST(time as DATE)", "color": "color"}},
config_schema={"value": str},
)
def multi_partitioned(context) -> SparkDF:
Expand Down
2 changes: 1 addition & 1 deletion python_modules/libraries/dagster-duckdb/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_version() -> str:
packages=find_packages(exclude=["dagster_duckdb_tests*"]),
include_package_data=True,
install_requires=[
"duckdb<0.10.0",
"duckdb",
f"dagster{pin}",
],
extras_require={
Expand Down

0 comments on commit c95c0a7

Please sign in to comment.