lazyarray 0.5.0-1 source package in Ubuntu

Changelog

lazyarray (0.5.0-1) unstable; urgency=medium

  * Team upload.
  * Fix watchfile to detect new versions on github
  * New upstream version
  * Standards-Version: 4.6.0 (routine-update)
  * debhelper-compat 13 (routine-update)
  * Add python-3.10.patch: fix build-time test failure
  * d/copyright: update years

 -- Étienne Mollier <email address hidden>  Sat, 11 Dec 2021 20:58:52 +0100

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
Noble release universe python
Mantic release universe python
Lunar release universe python
Jammy release universe python

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
lazyarray_0.5.0-1.dsc 2.1 KiB 013f4a30bd5e1e5934180edb9331c71f2fa84a82e748964cc2e9cf0f2cde2964
lazyarray_0.5.0.orig.tar.gz 26.2 KiB a530751d780fe4703ac4076e37328ddaf99ad7b3527e17bc79e8bb812e33009d
lazyarray_0.5.0-1.debian.tar.xz 4.0 KiB fa2e7c928a89736b006bbbe88670fd055a6929367619ab4102f77e87a8d8afa6

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).