Search Criteria
Package Details: python-clearml 1.16.4-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: | 2024-08-28 09:28 (UTC) |
Dependencies (18)
- python (python37AUR, python311AUR, python310AUR)
- python-attrs
- python-dateutil
- python-furl
- python-jsonschema
- python-numpy (python-numpy-flameAUR, python-numpy-mkl-binAUR, python-numpy-gitAUR, python-numpy1AUR, python-numpy-mklAUR)
- python-pathlib2AUR
- python-pillow (python-pillow-gitAUR)
- python-pyjwt
- python-pyparsing
- python-pyyaml (python-yaml)
- python-requests
- python-six
- python-urllib3
- python-build (make)
- python-installer (python-installer-gitAUR) (make)
- python-setuptools (make)
- python-wheel (make)
Required by (1)
- 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-wheel
is 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
pathlib2
is a hard dependency because imports rely onpathlib2
rather 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 betweenpathlib2
andpathlib
).MarsSeed commented on 2023-07-31 16:06 (UTC)
The
requirements.txt
should 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.