Installing using pip install ydiskarc fails with
Collecting ydiskarc
Using cached ydiskarc-1.0.1.tar.gz (7.9 kB)
Preparing metadata (setup.py) ... done
Collecting lxml
Using cached lxml-4.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (7.1 MB)
Collecting click
Using cached click-8.1.3-py3-none-any.whl (96 kB)
ERROR: Could not find a version that satisfies the requirement yaml (from ydiskarc) (from versions: none)
ERROR: No matching distribution found for yaml
Indeed the last released version 1.0.1 is quite old (nov 2021) https://pypi.org/project/ydiskarc/#history
But installing using pip install git+https://github.com/ruarxive/ydiskarc.git works
(because the requirements.txt file is correct: it uses pyyaml instead yaml)
So I guess a new release should be made.
Installing using
pip install ydiskarcfails withIndeed the last released version 1.0.1 is quite old (nov 2021) https://pypi.org/project/ydiskarc/#history
But installing using
pip install git+https://github.com/ruarxive/ydiskarc.gitworks(because the
requirements.txtfile is correct: it usespyyamlinsteadyaml)So I guess a new release should be made.