python-mrcfile 1.4.3-3 source package in Ubuntu

Changelog

python-mrcfile (1.4.3-3) unstable; urgency=medium

  * Patch out a test that fails with current numpy. This fixes "FTBFS:
    AssertionError: ValueError not raised", thanks to Lucas Nussbaum
    (Closes: #1028707). (Actually, the bug was fixed in the recent
    python3-numpy 1.24.2, but another bug was triggered by this same
    python3-numpy 1.24.2 version. Upstream author agrees that it's fine to
    patch out the test in question for now, see
    https://github.com/ccpem/mrcfile/issues/49). Patch from "s3v-".
  * Fix lintian override.
  * Fix line wrapping in changelog.

 -- Roland Mas <email address hidden>  Tue, 14 Feb 2023 17:12:54 +0100

Upload details

Uploaded by:
Debian PaN Maintainers
Uploaded to:
Sid
Original maintainer:
Debian PaN Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-mrcfile_1.4.3-3.dsc 2.0 KiB c64b5ed1a90b8cd4f7e58944422ab65de1f3d22dbd3fda572752fe85a81f1e2d
python-mrcfile_1.4.3.orig.tar.gz 141.3 MiB 0c2c702167c50c8b67e4ff7b1ec825a6bb60c0bff388950af08c79c5fd49e28b
python-mrcfile_1.4.3-3.debian.tar.xz 4.4 KiB b79639d0df7f31dabaa45f69e0d5a05652c4a91a8c21a9c485fca2716d6d7e72

Available diffs

No changes file available.

Binary packages built by this source

python3-mrcfile: Python implementation of the MRC2014 file format

 mrcfile is a Python implementation of the MRC2014 file format, which
 is used in structural biology to store image and volume data.
 .
 It allows MRC files to be created and opened easily using a very
 simple API, which exposes the file's header and data as numpy
 arrays. The code runs in Python 2 and 3 and is fully unit-tested.
 .
 This library aims to allow users and developers to read and write
 standard-compliant MRC files in Python as easily as possible, and
 with no dependencies on any compiled libraries except numpy. You can
 use it interactively to inspect files, correct headers and so on, or
 in scripts and larger software packages to provide basic MRC file I/O
 functions.
 .
 Key Features:
 .
  * Clean, simple API for access to MRC files
  * Easy to install and use
  * Validation of files according to the MRC2014 format
  * Seamless support for gzip and bzip2 files
  * Memory-mapped file option for fast random access to very large files
  * Asynchronous opening option for background loading of multiple files
  * Runs in Python 2 & 3, on Linux, Mac OS X and Windows