pkgsrc-WIP-changes archive

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

py-distributed: Update to 2024.2.0



Module Name:	pkgsrc-wip
Committed By:	Matthew Danielson <matthewd%fastmail.us@localhost>
Pushed By:	matthewd
Date:		Fri Mar 1 15:29:10 2024 -0800
Changeset:	72fe7e8fc9f753667ad44ffa6b574ec5ef5ae093

Modified Files:
	py-distributed/Makefile
	py-distributed/distinfo

Log Message:
py-distributed: Update to 2024.2.0

Highlights
Deprecate Dask DataFrame implementation

The current Dask DataFrame implementation is deprecated. In a future release, Dask DataFrame will use new implementation that contains several improvements including a logical query planning. The user-facing DataFrame API will remain unchanged.
The new implementation is already available and can be enabled by installing the dask-expr library:
$ pip install dask-expr
and turning the query planning option on:
import dask
dask.config.set({'dataframe.query-planning': True})
import dask.dataframe as dd
API documentation for the new implementation is available at https://docs.dask.org/en/stable/dask-expr-api.html
Any feedback can be reported on the Dask issue tracker https://github.com/dask/dask/issues
See GH#10912 from Patrick Hoefler for details.
Improved tokenization
This release contains several improvements to Dask’s object tokenization logic. More objects now produce deterministic tokens, which can lead to improved performance through caching of intermediate results.
See GH#10898, GH#10904, GH#10876, GH#10874, and GH#10865 from crusaderky for details.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=72fe7e8fc9f753667ad44ffa6b574ec5ef5ae093

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

diffstat:
 py-distributed/Makefile | 2 +-
 py-distributed/distinfo | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs:
diff --git a/py-distributed/Makefile b/py-distributed/Makefile
index aedfef7499..d1e5a88d22 100644
--- a/py-distributed/Makefile
+++ b/py-distributed/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	distributed-2024.1.1
+DISTNAME=	distributed-2024.2.1
 PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=	devel net
 GITHUB_PROJECT=	distributed
diff --git a/py-distributed/distinfo b/py-distributed/distinfo
index 4159201919..92d4d8b9fe 100644
--- a/py-distributed/distinfo
+++ b/py-distributed/distinfo
@@ -1,5 +1,5 @@
 $NetBSD$
 
-BLAKE2s (distributed-2024.1.1.tar.gz) = aa2785416d790da5c8c34918bab725331c906527046dc5c5cbf2f076578cd9ba
-SHA512 (distributed-2024.1.1.tar.gz) = 6ec0a19e4dd9df729c2906773584e9daa96bf5d338f15dc9b4ddb152d0e6a9969f9093d66f89c0db9950f2162a2e02c071b6247f091066005396db9e61488b1e
-Size (distributed-2024.1.1.tar.gz) = 2539830 bytes
+BLAKE2s (distributed-2024.2.1.tar.gz) = dad26e99ca0836b07c623a61f218bfc0213a0f830b44a0e692d0ab713cee463c
+SHA512 (distributed-2024.2.1.tar.gz) = 9f51d49a8e627e35a70889e25d2f61d9e7ca8906da9191c2691399e52af4e1fe3a9794b097a8d7c3b46fd7466b091c9be0170984b3e3a4bcb4f90902424b6b50
+Size (distributed-2024.2.1.tar.gz) = 2543868 bytes


Home | Main Index | Thread Index | Old Index