summaryrefslogtreecommitdiff
path: root/python
Commit message (Collapse)AuthorAge
* python/python3-automat: Fix offline build.Andrew Clemons2022-11-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If fixed this in 748383dcd0 by adding python-m2r as a dependency. This is correct since upstream's `setup_requires` declares m2r as a dependency: https://github.com/glyph/automat/blob/v20.2.0/setup.py#L27 If m2r is not installed, the build will try to download it. If this fails, the build fails. This means the package cannot be built without internet at the moment. ``` distutils.errors.DistutilsError: Command '['/usr/bin/python3', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/tmp/SBo/slackrepo.3Z4xrt/build_python3-automat/tmp0o3ejajj', '--quiet', 'm2r']' returned non-zero exit status 1. ``` In 96170348cc, a change was made to make m2r optional, but this does not work since it is still declared in setup.py. It should be optional, since it is only used for formatting the contents of README.md for use as long_description in setup and that is wrapped in a try / except and will use the raw, unformatted text of README.md if it is not found. So for this change, I have patched out the declaration of m2r in setup.py and you can now build the package without downloading things as root during the build. Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-mpmath: Add missing setuptools-scm dep.Andrew Clemons2022-11-05
| | | | | | | | | | | | | | | | | | | | | This is declared upstream here: https://github.com/fredrik-johansson/mpmath/blob/1.2.1/setup.cfg#L30 If setuptools-scm is not installed, the build will try to downloaad it as root when it runs. This means you cannot build this package without internet access. ``` distutils.errors.DistutilsError: Command '['/usr/bin/python2', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/tmp/SBo/build_python-mpmath/tmpymNMLJ', '--quiet', 'setuptools_scm>=1.7.0']' returned non-zero exit status 1 ``` Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-automat: Fix offline build.Andrew Clemons2022-11-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If fixed this in 9c7bc63003 by adding python-m2r as a dependency. This is correct since upstream's `setup_requires` declares m2r as a dependency: https://github.com/glyph/automat/blob/v20.2.0/setup.py#L27 If m2r is not installed, the build will try to download it. If this fails, the build fails. This means the package cannot be built without internet at the moment. ``` distutils.errors.DistutilsError: Command '['/usr/bin/python2', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/tmp/SBo/build_python2-automat/tmpN8eQGt', '--quiet', 'm2r']' returned non-zero exit status 1 ``` In 5f580e046a, a change was made to make m2r optional, but this does not work since it is still declared in setup.py. It should be optional, since it is only used for formatting the contents of README.md for use as long_description in setup and that is wrapped in a try / except and will use the raw, unformatted text of README.md if it is not found. So for this change, I have patched out the declaration of m2r in setup.py and you can now build the package without downloading things as root during the build. Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-unicodedata2: Updated for version 15.0.0.Andrew Clemons2022-11-05
| | | | | | Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/homebase: Added (API to query for applications data paths)William PC2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-diskcache: Added (disk and file backed cache library)William PC2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-plucky: Added (Scrap keys/paths/items in Python)William PC2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-plucky: Added (Scrap keys/paths/items in Python)William PC2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/pallets-sphinx-themes: Added (Pallets Sphinx Themes)Vijay Marcel2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-debian: Added (Read Data from Debian Files)Vijay Marcel2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/license-expression: Added (Utility to parse Licenses)Vijay Marcel2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/boolean-py: Added (Library for Boolean Expression)Vijay Marcel2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/binaryornot: Added (Heuristic File checker)Vijay Marcel2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/functools-lru-cache: Updated for version 1.6.4.Serban Udrea2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-libtmux: Added (python api for tmux)fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-confuse: Added (painless YAML config files)fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-mediafile: Added (read and write audio files' tags)fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-Flask-RESTX: Updated for version 1.0.3.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-guessit: Updated for version 3.5.0.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/cloudpickle: Updated for version 2.2.0.Giancarlo Dessì2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-libtmux: Updated for version 0.15.9.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/tzdata: Updated for version 2022.6.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-jaraco.collections: Updated for version 3.7.0.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-jaraco.classes: Updated for version 3.2.3.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-jaraco.text: Updated for version 3.10.0.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-jaraco.functools: Updated for version 3.5.2.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-more-itertools: Updated for version 9.0.0.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-inflect: Updated for version 6.0.2.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-mediafile: Updated for version 0.10.1.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-hatch_vcs: Added (versioning with preferred VCS)fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-hatchling: Updated for version 1.11.1.fourtysixandtwo2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/subprocess32: Updated for version 3.5.4.Serban Udrea2022-11-05
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-statsmodels: Update for 0.13.5Isaac Yu2022-11-04
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/mistune: Removed (renamed python/python2-mistune).Yth - Arnaud2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/gi-docgen: Fix missing dep. BUILD bumped.Steven Voges2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-obspy: Updated for version 1.3.1.Cristiano Urban2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-python-editor: Added (Programmatically open editor)Yth - Arnaud2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/sphinx-last-updated-by-git: Added (Sphinx Last Updated Time)Vijay Marcel2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/sounddevice: Added (Play And Record Sound With Python)Vijay Marcel2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/insipid-sphinx-theme: Added (Insipid Sphinx Theme)Vijay Marcel2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/breathe: Added (Sphinx Doxygen Renderer)Vijay Marcel2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python-m2r: Update REQUIRES.David Spencer2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-mistune: Added (Python markdown parser)Yth - Arnaud2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-mistune: Added (Python markdown parser)Isaac Yu2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-tomlkit: Update for 0.11.6Isaac Yu2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/scikit-learn: Update for 1.1.3Isaac Yu2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-editor: Removed (Use python3-python-editor)Arn02022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/traitlets: Update for 5.5.0Isaac Yu2022-10-29
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-psycopg2: updated for version 2.9.4Arn02022-10-22
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python3-seaborn: Edit READMEIsaac Yu2022-10-22
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>