Package Details: python-albucore 0.0.21-2

Git Clone URL: https://aur.archlinux.org/python-albucore.git (read-only, click to copy)
Package Base: python-albucore
Description: A high-performance image processing library designed to optimize and extend the Albumentations library with specialized functions for advanced image transformations
Upstream URL: https://github.com/albumentations-team/albucore
Licenses: MIT
Submitter: hottea
Maintainer: hottea (lilac)
Last Packager: lilac
Votes: 0
Popularity: 0.000000
First Submitted: 2024-06-03 03:17 (UTC)
Last Updated: 2024-11-08 00:42 (UTC)

Latest Comments

daskol commented on 2024-11-08 03:37 (UTC)

Indeed, albucore devs are absolutely insane. They absolutely ignore maintaining proper dependency list.

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,16 +2,18 @@
 url='https://github.com/albumentations-team/albucore'
 license=('MIT')
 depends=(
+  python-importlib-metadata
   python-numpy
   python-opencv
-  python-tomli
+  python-simsimd
+  python-stringzilla
 )
 makedepends=(
   python-build

migrev commented on 2024-11-07 11:32 (UTC) (edited on 2024-11-07 11:32 (UTC) by migrev)

Also missing simsimd:

lib/python3.12/site-packages/albucore/functions.py:import simsimd as ss

gmes78 commented on 2024-10-24 01:27 (UTC)

There seems to be a missing dependency. I'm getting the following error:

$ python -c "import albucore"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3.12/site-packages/albucore/__init__.py", line 14, in <module>
    from .functions import *
  File "/usr/lib/python3.12/site-packages/albucore/functions.py", line 8, in <module>
    import stringzilla as sz
ModuleNotFoundError: No module named 'stringzilla'

Looks like v0.0.18 introduced a dependency on the stringzilla module, which needs to be added to this package.

daskol commented on 2024-08-29 11:47 (UTC)

Update package dependencies please. As I said earlier python-tomli is not needed.

diff --git a/PKGBUILD b/PKGBUILD
index fbbb9af..7520947 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 _pkgname=albucore
 pkgname=python-albucore
 pkgver=0.0.14
-pkgrel=1
+pkgrel=2
 pkgdesc='A high-performance image processing library designed to optimize and extend the Albumentations library with specialized functions for advanced image transformations'
 arch=('any')
 url='https://github.com/albumentations-team/albucore'
@@ -11,7 +11,6 @@ license=('MIT')
 depends=(
   python-numpy
   python-opencv
-  python-tomli
 )
 makedepends=(
   python-build

daskol commented on 2024-08-28 20:42 (UTC)

It seems python-tomli does not even imported by albucore and should be dropped from package dependencies (see albumentations-team/albucore#26).