Skip to content
Merged
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ packages = ["duckdb", "_duckdb"]
strict = true
warn_unreachable = true
pretty = true
python_version = "3.10"
python_version = "3.12"
exclude = [
"duckdb/experimental/", # not checking the pyspark API
"duckdb/query_graph/", # old and unmaintained (should probably remove)
Expand Down
8 changes: 4 additions & 4 deletions tests/fast/test_all_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,17 +377,17 @@ def test_fetchnumpy(self, cur_type):
),
"interval": np.ma.array(
[
np.timedelta64(0),
np.timedelta64(2675722599999999000),
np.timedelta64(42),
np.timedelta64(0, "ns"),
np.timedelta64(2675722599999999000, "ns"),
np.timedelta64(42, "ns"),
],
mask=[0, 0, 1],
),
# For timestamp_ns, the lowest value is out-of-range for numpy,
# such that the conversion yields "Not a Time"
"timestamp_ns": np.ma.array(
[
np.datetime64("NaT"),
np.datetime64("NaT", "ns"),
np.datetime64(9223372036854775806, "ns"),
np.datetime64("1990-01-01T00:42"),
],
Expand Down
Loading