Do you mean we should be specifying minimum versions or maximum versions on dependencies?
We should specify the versions on which we know moviepy works. If one of the dependency gets a new version, even one with breaking changes, moviepy will stop working as it will download the latest dependencies.
I created this issue as I encountered this very problem. Tomorrow I'll try to give a snippet that can reproduce the error. :)
Yeah, I agree the version numbers should be fixed, and only be ones that we know work.
So, a bit of a follow up.
I'm not sure if it is better to create an issue but I'll first mention the errors here.
First of all, with the last version of movieio, in my case it is necessary to execute the command: import imageio; imageio.plugins.ffmpeg.download() for executing anything related with ffmpeg. It wasn't necessary with movieio 1.6 as it was bundled in the package.
I also encounter this issue: https://github.com/Zulko/moviepy/issues/376 . it is apparently related to the update of numpy, which could also be avoided if storing the dependencies versions within the setup.py file.
I'd like to mention that I'm happy to see this project live again with the PR and issues being attended. :+1:
There have been some improvements in #626 for this.
Locking in to a fixed version is problematic, because:
Semantic versioning allows us to specify that we accept any version, from the version we know works, up to the next breaking change (indicated by the first digit), so we can take advantage of that in the setup.py specifications.
All sorted in v2.0, if not before.
Most helpful comment
Yeah, I agree the version numbers should be fixed, and only be ones that we know work.