Philipp Hauer
Philipp Hauer
I'm running into the same issue. Given the following build.py: ``` @init def set_properties(project): project.depends_on_requirements("requirements.txt") project.build_depends_on_requirements("requirements-build.txt") project.depends_on("pyItunes") project.set_property("install_dependencies_index_url", "https://github.com/phauer/pyitunes") ``` I removed `git+https://github.com/phauer/pyitunes.git` from my requirements.txt. When I call `pyb...
`pyb install_dependencies` works when I remove ``` project.depends_on("pyItunes") project.set_property("install_dependencies_index_url", "https://github.com/phauer/pyitunes") ``` from the build.py and add `git+https://github.com/phauer/pyitunes.git` again to the requirements.txt. But then `pyb` leads to ``` error in migrate-itunes-to-rhythmbox...
Oh, sorry! Thanks for your response! However, I'm still wondering why URLs in the requirements.txt (like `git+https://github.com/phauer/pyitunes.git`) are not fully supported. `pyb install_dependencies` works, but `pyb` doesn't. Is this intended?...
That are good news, but what am I doing wrong? Calling `pyb` leads to the following error in `reports/distutils/sdist`: ``` error in my_project setup command: 'install_requires' must be a string...
@arcivanov : That works! Thank you so much. But it's important to know that you have to set the `--process-dependency-links` flag when installing the tar.gz via pip. But what do...
Hi @ni-ka, your problem is hard to analyze without any further informations like your script parameters and same example paths from the rythmbox and itunes files.
Hi @ni-ka, thanks for your interest in the migration script although it doesn't worked out so well for you until now. ;-) Regarding this ticket: This is intended behavior. As...
Hi BlkChockr, thank you so much for your kind words! I'm very happy that this script is of use to others. And thank you for your feedback and your interesting...
Are you trolling me? ;-) Basically, you're right. It would be handy to have `migrate-itunes-to-rhythmbox` at PyPI. But in contrast to `migrate-itunes-to-rhythmbox`, `pyitunes` is a library. Libraries are included in...