I use the command pipenv install ...
to install my python packages.
My problem:
If I install the python packages (google-cloud-storage and google-auth-oauthlib) and then if I try to install apache-beam[gcp], I get the following exception :
pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches google-resumable-media<0.5.0dev,<0.6dev,>=0.3.1,>=0.5.0
...
There are incompatible versions in the resolved dependencies.
And the same happens if I inverse the order : apache-beam[gcp] then (google-cloud-storage and google-auth-oauthlib)
How can I resolve the dependencies issue?
Maybe excluding transitive dependencies would resolve the problem? How to do that using Pipenv?
Thank you