Package Details: python-arviz 0.23.1-1

Git Clone URL: https://aur.archlinux.org/python-arviz.git (read-only, click to copy)
Package Base: python-arviz
Description: Exploratory analysis of Bayesian models with Python
Upstream URL: https://github.com/arviz-devs/arviz
Licenses: Apache License 2.0
Submitter: lllf
Maintainer: lllf
Last Packager: lllf
Votes: 4
Popularity: 0.052166
First Submitted: 2020-01-31 02:08 (UTC)
Last Updated: 2026-01-24 02:59 (UTC)

Latest Comments

1 2 Next › Last »

lllf commented on 2026-01-24 03:07 (UTC)

@carlosal1015 Thanks, we'll split the packages once they release v1

carlosal1015 commented on 2026-01-24 00:01 (UTC) (edited on 2026-01-24 00:19 (UTC) by carlosal1015)

# Maintainer: Sam Linnfer <littlelightlittlefire@gmail.com>
_base=arviz
pkgname=python-${_base}
pkgver=0.23.1
pkgrel=1
pkgdesc="Exploratory analysis of Bayesian models with Python"
url="https://github.com/${_base}-devs/${_base}"
arch=(any)
license=(Apache-2.0)
depends=(python-arviz-base python-arviz-stats python-arviz-plots)
makedepends=(python-build python-installer python-flit-core)
source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz)
sha512sums=('a1cd603dc04061e190db1a70696f0c4199930114701967155d4b9e4ab1a62826a717c5aa7450fb609318020aecbf96510e9d32b63c26b32a8efac5b5eb41050c')

build() {
  cd ${_base}-${pkgver}
  python -m build --wheel --skip-dependency-check --no-isolation
}

package() {
  cd ${_base}-${pkgver}
  PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --destdir="${pkgdir}" dist/*.whl
  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# Maintainer: Sam Linnfer <littlelightlittlefire@gmail.com>
_base=arviz-base
pkgname=python-${_base}
pkgver=0.8.2
pkgrel=1
pkgdesc="Base ArviZ features and converters"
url="https://github.com/${_base%-*}-devs/${_base}"
arch=(any)
license=(Apache-2.0)
depends=(python-numpy python-xarray python-typing_extensions)
makedepends=(python-build python-installer python-flit-core)
source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz)
sha512sums=('4696fa646dce35c09313792c6d430c88e5f03fb5a7c5cc3db580cc52524dc963227ae2cb0924dd0b30d1a03243d7d316295d92626cde02da36204ff60f065cdc')

build() {
  cd ${_base}-${pkgver}
  python -m build --wheel --skip-dependency-check --no-isolation
}

package() {
  cd ${_base}-${pkgver}
  PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --destdir="${pkgdir}" dist/*.whl
  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}

# Maintainer: Sam Linnfer <littlelightlittlefire@gmail.com>
_base=arviz-stats
pkgname=python-${_base}
pkgver=0.8.0
pkgrel=1
pkgdesc="Statistical computation and diagnostics for ArviZ"
url="https://github.com/${_base%-*}-devs/${_base}"
arch=(any)
license=(Apache-2.0)
depends=(python-scipy)
makedepends=(python-build python-installer python-flit-core)
source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz)
sha512sums=('cdc81f3690e387e97ad5f41d35fcddf5bb3d4716d690319b998f979c296fd47ee5533e854bd222cc325f4274b91823b1324741bf31155cc70f182c37a22896d1')

build() {
  cd ${_base}-${pkgver}
  python -m build --wheel --skip-dependency-check --no-isolation
}

package() {
  cd ${_base}-${pkgver}
  PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --destdir="${pkgdir}" dist/*.whl
  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}

# Maintainer: Sam Linnfer <littlelightlittlefire@gmail.com>
_base=arviz-plots
pkgname=python-${_base}
pkgver=0.8.0
pkgrel=1
pkgdesc="ArviZ modular plotting"
url="https://github.com/${_base%-*}-devs/${_base}"
arch=(any)
license=(Apache-2.0)
depends=(python-arviz-base python-arviz-stats python-xarray-einstats)
makedepends=(python-build python-installer python-flit-core)
source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz)
sha512sums=('80122ba290519dc4c1c83d0a4860fed20203d8371db51f7515cb54707782c663be0adf1ed8eae80b2c254eb750b422d18033a519dc417e7b1a6d44cb7ee47ee3')

build() {
  cd ${_base}-${pkgver}
  python -m build --wheel --skip-dependency-check --no-isolation
}

package() {
  cd ${_base}-${pkgver}
  PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --destdir="${pkgdir}" dist/*.whl
  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}

lllf commented on 2024-04-09 07:09 (UTC)

@carsme How embarrassing, it should be fixed now.

carsme commented on 2024-04-09 05:14 (UTC)

python-dm-tree is a missing dep:

/usr/lib/python3.11/site-packages/arviz/data/base.py:12: in <module>
    import tree
E   ModuleNotFoundError: No module named 'tree'

Adding testing to the package would help catch these issues in the future. Feel free to add me as co-maintainer if you'd like me to do it :)

lllf commented on 2023-09-22 07:19 (UTC)

@MarsSeed updated, let me know if that works.

MarsSeed commented on 2023-09-22 07:10 (UTC)

This needs some makedepends to be buildable.

Also, executing setup.py is deprecated and will soon be disabled. Please kindly modernize the build as per PEP 517 setup flow.

lllf commented on 2022-10-03 03:22 (UTC)

@a.kudelin Thanks for that, I've updated the deps.

a.kudelin commented on 2022-10-02 18:45 (UTC)

I have created python-xarray-einstats, could you please add it as a dependency?

RunasSudo commented on 2022-09-27 12:53 (UTC)

Seems to require xarray-einstats as a dependency (as a stop gap measure, this can be installed with pypi2pkgbuild)