cyarray 1.1-6 source package in Ubuntu

Changelog

cyarray (1.1-6) unstable; urgency=medium

  * Standards version bumped to 4.6.2 (no changes).
  * debian/patches:
    - New 0003-Compatibility-with-cython-v3.0.patch.
  * debian/control:
    - Bump deblekper compat version to 13.
    - Use <!nocheck> marker.
  * Set upstream metadata fields: Repository.

 -- Antonio Valentino <email address hidden>  Sun, 26 Nov 2023 09:26:57 +0000

Upload details

Uploaded by:
Debian Science Team
Uploaded to:
Sid
Original maintainer:
Debian Science Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
cyarray_1.1-6.dsc 2.1 KiB acd3d75b2d55716f516eb2286d50d48a88e5a5609473fc7d0ff0c3973282ff76
cyarray_1.1.orig.tar.gz 24.1 KiB bc23dd135828a5f504ba5108dd06c0e2bae1145614d55a972cec02b73b6f2b72
cyarray_1.1-6.debian.tar.xz 5.3 KiB 2bd2d0d87b9e3460d989e663371b7a0eed93cea90ae34235e9e3514b857942c2

Available diffs

No changes file available.

Binary packages built by this source

python3-cyarray: Fast, typed, resizable, Cython array

 The cyarray package provides a fast, typed, re-sizable, Cython array.
 .
 It currently provides the following arrays: ``IntArray, UIntArray,
 LongArray, FloatArray, DoubleArray``.
 .
 All arrays provide for the following operations:
 .
  - access by indexing.
  - access through get/set function.
  - resizing the array.
  - appending values at the end of the array.
  - reserving space for future appends.
  - access to internal data through a numpy array.
 .
 If you are writing Cython code this is a convenient array to use as it
 exposes the raw underlying pointer to the data.
 For example if you use a ``FloatArray`` and access its ``data``
 attribute it will be a ``float*``.
 .
 Each array also provides an interface to its data through a numpy
 array.
 This is done through the ``get_npy_array`` function.
 The returned numpy array can be used just like any other numpy array
 but for the following restrictions:
 .
  - the array may not be resized.
  - references of this array should not be kept.
  - slices of this array may not be made.
 .
 The numpy array may however be copied and used in any manner.

python3-cyarray-dbgsym: debug symbols for python3-cyarray