Search Criteria
Package Details: python-numcodecs 0.13.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-numcodecs.git (read-only, click to copy) |
---|---|
Package Base: | python-numcodecs |
Description: | A Python package providing buffer compression and transformation codecs for use in data storage and communication applications |
Upstream URL: | https://github.com/zarr-developers/numcodecs |
Licenses: | MIT |
Submitter: | flying-sheep |
Maintainer: | flying-sheep |
Last Packager: | flying-sheep |
Votes: | 2 |
Popularity: | 0.000000 |
First Submitted: | 2019-01-02 14:15 (UTC) |
Last Updated: | 2024-10-28 08:15 (UTC) |
Dependencies (11)
- python-msgpack
- python-numpy (python-numpy-flameAUR, python-numpy-mkl-binAUR, python-numpy-gitAUR, python-numpy1AUR, python-numpy-mklAUR, python-numpy-mkl-tbbAUR)
- cython (cython-gitAUR, cython0AUR) (make)
- python-build (make)
- python-installer (python-installer-gitAUR) (make)
- python-py-cpuinfo (make)
- python-setuptools (make)
- python-setuptools-scm (make)
- python-wheel (make)
- python-pcodec (optional)
- python-zfpy (optional)
Latest Comments
flying-sheep commented on 2024-10-28 08:13 (UTC)
@MarsSeed: You said “pls remove the nonexistent optdepends”
But why?
flying-sheep commented on 2023-01-12 17:49 (UTC) (edited on 2023-01-12 17:49 (UTC) by flying-sheep)
It’s defined here: https://github.com/zarr-developers/numcodecs/blob/955019b55a31b4a03c76f62edfde5df2301282c4/numcodecs/blosc.pyx#L21
I guess that cython syntax means it needs /usr/include/blosc.h (in the
blosc
package) at build time. I should add that to build deps.tujir commented on 2022-12-19 14:39 (UTC)
Do we need python-blosc as dependency?
ImportError: cannot import name 'Blosc' from 'numcodecs' (/usr/lib/python3.10/site-packages/numcodecs/init.py)
flying-sheep commented on 2022-09-15 10:35 (UTC)
fixed
carlosal1015 commented on 2022-09-12 17:04 (UTC)
Hi, I have the following message error
mauritiusdadd commented on 2022-08-05 08:04 (UTC)
Hi, can you add python-wheel and python-setuptools-scm to make dependencies? The package fails to build without them in a clean environment
flying-sheep commented on 2022-01-27 07:47 (UTC)
good idea, done!
Strawpants commented on 2022-01-25 14:57 (UTC)
I tried compiling this on a relatively old computer (Nehalem) and got an illegal (hardware) instruction as reported here: https://github.com/zarr-developers/numcodecs/issues/252
The reason is apparently that the cpu doesn't support avx2 instructions.
I recommend to change in the PKGBUILD export CFLAGS="$CFLAGS -msse2 -mavx2" to export CFLAGS="$CFLAGS -march=native"
so only the available instructions will be build (both sse2 and avx2 when available), but the build will also work on older architectures.