Skip to content

Commit 691a3e5

Browse files
committed
fix test and update description.md
1 parent 6c6411d commit 691a3e5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

DESCRIPTION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
1212
- This allows headless environments (like Docker or Airflow) running locally to auth via a browser URL.
1313
- Fix compilation error when building from sources with libc++.
1414
- Pin lower versions of dependencies to oldest version without vulnerabilities.
15+
- Fix string representation of INTERVAL YEAR and INTERVAL MONTH types.
1516

1617
- v4.0.0(October 09,2025)
1718
- Added support for checking certificates revocation using revocation lists (CRLs)

test/unit/test_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@ def test_day_time_interval_decimal_to_timedelta(nanos):
131131
def test_year_month_interval_to_timedelta(months):
132132
converter = ArrowConverterContext()
133133
assert converter.INTERVAL_YEAR_MONTH_to_numpy_timedelta(
134-
months
134+
months, scale=0
135135
) == numpy.timedelta64(months, "M")

0 commit comments

Comments
 (0)