Search Criteria
Package Details: python-scikit-surprise 1.1.4-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-scikit-surprise.git (read-only, click to copy) |
---|---|
Package Base: | python-scikit-surprise |
Description: | Python scikit for building and analyzing recommender systems |
Upstream URL: | https://github.com/NicolasHug/Surprise |
Keywords: | learning machine recommender surpriselib system |
Licenses: | BSD-3-Clause |
Submitter: | edh |
Maintainer: | edh |
Last Packager: | edh |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2018-08-01 09:28 (UTC) |
Last Updated: | 2024-06-01 18:04 (UTC) |
Dependencies (12)
- python-joblib
- python-numpy (python-numpy-flameAUR, python-numpy-gitAUR, python-numpy1AUR, python-numpy-mkl-binAUR, python-numpy-mklAUR, python-numpy-mkl-tbbAUR)
- python-scipy (python-scipy-gitAUR, python-scipy-mklAUR, python-scipy-mkl-tbbAUR, python-scipy-mkl-binAUR)
- python-six
- cython (cython-gitAUR, cython0AUR) (make)
- python-setuptools (make)
- flake8 (optional) – code linting to comply with contributing standards
- python-pandas (optional) – dataframe handling
- python-pytest (optional) – test suite
- python-sphinx (python-sphinx-gitAUR) (optional) – documentation generator
- python-sphinxcontrib-spelling (optional) – spelling extension for documentation generator
- python-sphinx_rtd_theme (optional) – Read The Docs theme for documentation generator
Latest Comments
edh commented on 2020-01-11 12:05 (UTC)
@charlie Thanks for the comment! I made the change already locally a while back but forgot to actually commit and push it.
While being at it, I pruned the python2 version of the package due to python2's EOL.
charlie commented on 2020-01-10 11:11 (UTC) (edited on 2020-01-10 11:12 (UTC) by charlie)
I have errors when trying to create the package:
[code]
makepkg -sri
==> ERROR: conflicts is not allowed to be empty.
==> ERROR: depends is not allowed to be empty.
==> ERROR: provides is not allowed to be empty.
[/code]
It worked after I replaced the ("") and ('') by just ():
[code]
depends=()
...
provides=()
conflicts=()
[/code]