Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ Write the date in place of the "Unreleased" in the case a new version is release

- Column names in `TableStructure` are explicitly converted to strings.

### Changed

- Our dependency on duckdb had been pinned down to `<1.4.0` because of a
regression. The regression was resolved in 1.4.1, so the pin has been
relaxed to `!=1.4.1`.


## v0.1.6 (2025-09-29)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ all = [
"dask",
"dask[array]",
"dask[dataframe]",
"duckdb <1.4.0", # https://github.com/bluesky/tiled/issues/1144
"duckdb !=1.4.0",
"entrypoints",
"fastapi >=0.115.8",
"h5netcdf",
Expand Down Expand Up @@ -233,7 +233,7 @@ server = [
"dask",
"dask[array]",
"dask[dataframe]",
"duckdb <1.4.0", # https://github.com/bluesky/tiled/issues/1144
"duckdb !=1.4.0",
"entrypoints",
"fastapi >=0.115.8",
"h5netcdf",
Expand Down
Loading