Search Criteria
Package Details: python-clearml 2.0.2-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/python-clearml.git (read-only, click to copy) | 
|---|---|
| Package Base: | python-clearml | 
| Description: | Auto-Magical Suite of tools to streamline your ML workflow | 
| Upstream URL: | https://github.com/allegroai/clearml | 
| Licenses: | MIT | 
| Submitter: | piernov | 
| Maintainer: | piernov | 
| Last Packager: | piernov | 
| Votes: | 0 | 
| Popularity: | 0.000000 | 
| First Submitted: | 2023-05-22 12:52 (UTC) | 
| Last Updated: | 2025-07-10 16:27 (UTC) | 
Dependencies (18)
- python
- python-attrs (python-attrs-gitAUR)
- python-dateutil (python-dateutil-gitAUR)
- python-furl
- python-jsonschema
- python-numpy (python-numpy-gitAUR, python-numpy1AUR, python-numpy-mkl-binAUR, python-numpy-mklAUR, python-numpy-mkl-tbbAUR)
- python-pathlib2AUR
- python-pillow (python-pillow-simd-gitAUR)
- python-pyjwt
- python-pyparsing
- python-pyyaml (python-yaml-gitAUR, python-yaml)
- python-requests
- python-six
- python-urllib3
- python-build (make)
- python-installer (make)
- python-setuptools (make)
- python-wheel (make)
Required by (2)
- python-pytorch-ignite
- python-qualia-core (optional)
Latest Comments
MarsSeed commented on 2023-11-13 11:15 (UTC)
python-wheel should only be in makedepends, not depends.
greg19 commented on 2023-11-13 10:35 (UTC)
python-wheelis missing from dependenciesMarsSeed commented on 2023-08-04 03:43 (UTC)
And the "from pathlib2" statements with "from pathlib".
MarsSeed commented on 2023-08-04 03:41 (UTC)
Can you maybe patch the import statements by replacing "import pathlib2" with "import pathlib"?
piernov commented on 2023-07-31 17:04 (UTC)
@MarsSeed
pathlib2is a hard dependency because imports rely onpathlib2rather thanpathlib, without version check. So patching this would require more work than just removing the dependency. If you think it is needed to remove this dependency, you're welcome to submit a patch (maybe upstream if adding a version check to choose betweenpathlib2andpathlib).MarsSeed commented on 2023-07-31 16:06 (UTC)
The
requirements.txtshould be patched to removepathlib2, as that is part of the Python stdlib, and this module is only needed on some old Python 3.x versions, not for the current Python 3.8+ releases.