head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2026.06.05.10.41.53; author adam; state dead; branches; next 1.1; commitid gMcEMUArJjDj6BIG; 1.1 date 2026.04.20.09.22.35; author wiz; state Exp; branches; next ; commitid FlwNZRujZ7IY8GCG; desc @@ 1.2 log @py-pandas: updated to 3.0.3 3.0.3 Enhancements Starting with pandas 3.0.0, time zones are represented by default using the standard library’s zoneinfo module (or datetime.timezone for fixed offsets) instead of using pytz (release note). The IO methods using pyarrow under the hood such as read_parquet(), read_feather() and read_orc() (or read_csv() when specifying the engine) were still returning timezone using pytz. Those have now been updated to consistently use default zoneinfo time zones as well (GH 65134). Fixed regressions Fixed a regression in pandas.bdate_range() where specifying end on a weekend with periods returned fewer dates than expected (GH 64834) Fixed a regression in to_timedelta() ignoring the unit argument for round float values when mixed with non-round floats in a list (GH 65150) Fixed a regression in Series.rank() with custom extension dtypes (GH 64976) Fixed a regression in Timedelta.round(), Timedelta.floor(), and Timedelta.ceil() raising ZeroDivisionError for sub-second freq (GH 64828) Fixed reading of Parquet files with timezone-aware timestamps or localizing of a timeseries with a pytz timezone when an older version of pytz was installed (GH 64978) Fixed a regression in read_csv() with engine="c" where thousands="," could incorrectly parse non-numeric values like "1 ," as integers instead of strings (GH 64655) Fixed a performance regression when working with timezone-aware timeseries data using a default zoneinfo time zone, i.e. slowdown when accessing components or localizing a naive timeseries (GH 64363) Bug fixes Fixed ArrowDtype string arithmetic for addition between string and large_string typed arrays (GH 65220) Fixed a bug in adding missing values (e.g. NA) to a pyarrow-backed string array or Series raising an error instead of propagating the missing value (GH 64968) Fixed a bug in Series.rank() with period dtype and missing values, always sorting missing values at the top, regardless of the na_option value (GH 64976) Fixed a bug in reading files with a chained URL scheme (e.g. tar://) with the latest version of fsspec (GH 65462). Fixed a hang in Series.str.replace() for PyArrow-backed string data when replacing an empty pattern; behavior now matches Python’s str.replace (GH 64941). @ text @$NetBSD: patch-pandas___libs_tslibs_meson.build,v 1.1 2026/04/20 09:22:35 wiz Exp $ https://github.com/pandas-dev/pandas/commit/0e978b68ba68e0f3b1f8b9f6b5a38072948638f0 --- pandas/_libs/tslibs/meson.build.orig 2025-09-29 22:12:09.000000000 +0000 +++ pandas/_libs/tslibs/meson.build @@@@ -34,7 +34,7 @@@@ foreach ext_name, ext_dict : tslibs_sources ext_dict.get('sources'), cython_args: cython_args, include_directories: [inc_np, inc_pd], - dependencies: ext_dict.get('deps', ''), + dependencies: ext_dict.get('deps', []), subdir: 'pandas/_libs/tslibs', install: true ) @ 1.1 log @py-pandas: fix build with meson 1.11 @ text @d1 1 a1 1 $NetBSD$ @