pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-pandas



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Jun 29 12:48:43 UTC 2026

Modified Files:
        pkgsrc/math/py-pandas: Makefile distinfo

Log Message:
py-pandas: updated to 3.0.4

3.0.4

Fixed regressions
Fixed a performance regression in Series.searchsorted() and Index.searchsorted() with the string dtype, where a full O(n) NA scan made the operation much slower than the binary search itself (GH 
65837)
Fixed a regression in isin() raising an error when checking for pd.NA with ArrowDtype, which also affected DataFrame.drop() with ArrowDtype-backed indexes (GH 63304)
Fixed a regression in arithmetic operations involving StringDtype and custom Python objects incorrectly raising instead of returning object-dtype results (GH 64107)
Fixed a regression in localizing timestamps beyond the year 2100 when using zoneinfo timezones (GH 65733)
Fixed a regression in setting into a DataFrame with MultiIndex columns and mixed-dtype level silently doing nothing (GH 65118)
Bug fixes
Fixed a bug in DataFrame.iloc() silently ignoring the assignment when setting values with an unordered or duplicated column indexer on a DataFrame whose values are referenced by another object (GH 
65446)
Fixed a bug in DataFrame.to_sql() and read_sql_table() when using an ADBC engine where table and schema names were not quoted as SQL identifiers, causing failures for identifiers containing spaces or 
reserved words, and making it vulnerable to SQL injection (GH 65065)
Fixed a bug in Series.str.__getitem__() raising AttributeError when underlying array is ArrowExtensionArray (GH 65112)
Fixed a bug in Series.str.match() and Index.str.match() with PyArrow-backed string dtypes where a leading ^ only anchored the first branch of an alternation pattern (e.g. r"^foo|bar") (GH 66069)
Fixed a bug in eval() not honoring Copy-on-Write with the Python engine when columns were reused in the expression, causing unexpected mutation of the original DataFrame (GH 65664)
Fixed a bug in arithmetic adding or subtracting a non-tick DateOffset (e.g. offsets.MonthEnd, offsets.QuarterEnd) to datetime data that could cause a segmentation fault when another thread was 
running concurrently, e.g. under pytest-xdist (GH 66031)


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 pkgsrc/math/py-pandas/Makefile
cvs rdiff -u -r1.48 -r1.49 pkgsrc/math/py-pandas/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/py-pandas/Makefile
diff -u pkgsrc/math/py-pandas/Makefile:1.69 pkgsrc/math/py-pandas/Makefile:1.70
--- pkgsrc/math/py-pandas/Makefile:1.69 Sun Jun 28 15:41:29 2026
+++ pkgsrc/math/py-pandas/Makefile      Mon Jun 29 12:48:43 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.69 2026/06/28 15:41:29 wiz Exp $
+# $NetBSD: Makefile,v 1.70 2026/06/29 12:48:43 adam Exp $
 
-DISTNAME=      pandas-3.0.3
+DISTNAME=      pandas-3.0.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math graphics python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pandas/}

Index: pkgsrc/math/py-pandas/distinfo
diff -u pkgsrc/math/py-pandas/distinfo:1.48 pkgsrc/math/py-pandas/distinfo:1.49
--- pkgsrc/math/py-pandas/distinfo:1.48 Fri Jun  5 10:41:53 2026
+++ pkgsrc/math/py-pandas/distinfo      Mon Jun 29 12:48:43 2026
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.48 2026/06/05 10:41:53 adam Exp $
+$NetBSD: distinfo,v 1.49 2026/06/29 12:48:43 adam Exp $
 
-BLAKE2s (pandas-3.0.3.tar.gz) = 0e9868c49f7fd29b55edbee091e13d7688abaaf45dd6523b3124c1cc1570034c
-SHA512 (pandas-3.0.3.tar.gz) = 000b859c42aabf9364bf4e35fcd728a7a4ff4cfdbc7d2d40b4d3739087e1d03704438a2705e9e04a4025f6d98559bbe4c2f4f695c91b2ba4c4347b0444d48202
-Size (pandas-3.0.3.tar.gz) = 4651414 bytes
+BLAKE2s (pandas-3.0.4.tar.gz) = 86655fe147271f3698de784f75bb8817051e84bb34f8b7d41faf4ea92a5e4239
+SHA512 (pandas-3.0.4.tar.gz) = 0321357d876f465d2bbfb7194e3a15242943ab37fbf8a05829cd4b87174ba56ff0991dafc86e44ec8bfb7223fbb1e1a711da866b87198ca4b61a21ebecc7143a
+Size (pandas-3.0.4.tar.gz) = 4658146 bytes
 SHA1 (patch-pandas___libs_src_parser_tokenizer.c) = 3f74c1ca3c54d72cd976e9915339e20b356ad77b
 SHA1 (patch-pandas___libs_window_aggregations.pyx) = c38a287038a13af52164d44301a31a4a810b3860



Home | Main Index | Thread Index | Old Index