You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

unidist

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unidist - pypi Package Compare versions

Comparing version
0.7.0
to
0.7.1
+2
-2
PKG-INFO
Metadata-Version: 2.1
Name: unidist
Version: 0.7.0
Version: 0.7.1
Summary: Unified Distributed Execution

@@ -24,3 +24,3 @@ Home-page: https://github.com/modin-project/unidist

<a href="https://unidist.readthedocs.io/en/latest/?badge=latest"><img alt="" src="https://readthedocs.org/projects/unidist/badge/?version=latest" align="center"></a>
<a href="https://pypi.org/project/unidist/"><img src="https://badge.fury.io/py/unidist.svg" alt="PyPI version" align="center"></a>
<a href="https://pypi.org/project/unidist/0.7.1/"><img src="https://img.shields.io/badge/pypi-0.7.1-blue.svg" alt="PyPI version" align="center"></a>
<a href="https://pepy.tech/project/unidist"><img src="https://static.pepy.tech/personalized-badge/unidist?period=total&units=international_system&left_color=black&right_color=blue&left_text=Downloads" align="center"></a>

@@ -27,0 +27,0 @@ </p>

@@ -9,3 +9,3 @@ <p align="center">

<a href="https://unidist.readthedocs.io/en/latest/?badge=latest"><img alt="" src="https://readthedocs.org/projects/unidist/badge/?version=latest" align="center"></a>
<a href="https://pypi.org/project/unidist/"><img src="https://badge.fury.io/py/unidist.svg" alt="PyPI version" align="center"></a>
<a href="https://pypi.org/project/unidist/0.7.1/"><img src="https://img.shields.io/badge/pypi-0.7.1-blue.svg" alt="PyPI version" align="center"></a>
<a href="https://pepy.tech/project/unidist"><img src="https://static.pepy.tech/personalized-badge/unidist?period=total&units=international_system&left_color=black&right_color=blue&left_text=Downloads" align="center"></a>

@@ -12,0 +12,0 @@ </p>

Metadata-Version: 2.1
Name: unidist
Version: 0.7.0
Version: 0.7.1
Summary: Unified Distributed Execution

@@ -24,3 +24,3 @@ Home-page: https://github.com/modin-project/unidist

<a href="https://unidist.readthedocs.io/en/latest/?badge=latest"><img alt="" src="https://readthedocs.org/projects/unidist/badge/?version=latest" align="center"></a>
<a href="https://pypi.org/project/unidist/"><img src="https://badge.fury.io/py/unidist.svg" alt="PyPI version" align="center"></a>
<a href="https://pypi.org/project/unidist/0.7.1/"><img src="https://img.shields.io/badge/pypi-0.7.1-blue.svg" alt="PyPI version" align="center"></a>
<a href="https://pepy.tech/project/unidist"><img src="https://static.pepy.tech/personalized-badge/unidist?period=total&units=international_system&left_color=black&right_color=blue&left_text=Downloads" align="center"></a>

@@ -27,0 +27,0 @@ </p>

@@ -11,7 +11,7 @@

{
"date": "2024-05-29T15:58:01+0200",
"date": "2024-09-13T13:19:49+0200",
"dirty": false,
"error": null,
"full-revisionid": "1e2922ac2cf2b707b1a0ed06c4842da5ca3ecea8",
"version": "0.7.0"
"full-revisionid": "6d9b4910c6e161fb4e32284ae4788393c72fe88b",
"version": "0.7.1"
}

@@ -18,0 +18,0 @@ ''' # END VERSION_JSON

@@ -448,3 +448,5 @@ # Copyright (C) 2021-2023 Modin authors

s_data_last_index = first_index + s_data_len
s_data = self.shared_buffer[first_index:s_data_last_index].toreadonly()
s_data = (
self.shared_buffer[first_index:s_data_last_index].cast("b").toreadonly()
)
prev_last_index = s_data_last_index

@@ -455,3 +457,5 @@ raw_buffers = []

raw_buffers.append(
self.shared_buffer[prev_last_index:raw_last_index].toreadonly()
self.shared_buffer[prev_last_index:raw_last_index]
.cast("b")
.toreadonly()
)

@@ -458,0 +462,0 @@ prev_last_index = raw_last_index

Sorry, the diff of this file is too big to display