lazyarray 0.5.2-1 source package in Ubuntu

Changelog

lazyarray (0.5.2-1) unstable; urgency=medium

  * Team Upload
  * Update watch file for new GitHub API
  * New upstream version 0.5.2
  * Update homepage, BitBucket one is 404
  * Use dh-sequence-python3
  * Replace Nose with Pytest (Closes: #1018393)

 -- Alexandre Detiste <email address hidden>  Tue, 06 Aug 2024 12:40:42 +0200

Upload details

Uploaded by:
Debian Science Team
Uploaded to:
Sid
Original maintainer:
Debian Science Team
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe python

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
lazyarray_0.5.2-1.dsc 2.1 KiB 03e089a8238f9ea12f137346a0c3a7230432a4fa45686bb2f5f7e134e9e94e10
lazyarray_0.5.2.orig.tar.gz 26.3 KiB 4d07662e63e11bf44f17af2fab925d9648d4fc0ffa0b14dc7e4e2a6aa458fdc7
lazyarray_0.5.2-1.debian.tar.xz 2.8 KiB 7cc4f4087a2b4346f2b4ef3fb8e03b507190a17c13397a209a15e388d9ab2962

Available diffs

No changes file available.

Binary packages built by this source

python3-lazyarray: Python module providing a NumPy-compatible lazily-evaluated array

 The 'larray' class is a NumPy-compatible numerical array where operations on
 the array (potentially including array construction) are not performed
 immediately, but are delayed until evaluation is specifically requested.
 Evaluation of only parts of the array is also possible. Consequently,
 use of an 'larray' can potentially save considerable computation time
 and memory in cases where arrays are used conditionally, or only parts of an
 array are used (for example in distributed computation, in which each MPI node
 operates on a subset of the elements of the array).