I can't install GitPython==2.1.14 anymore, and I think it has to do with the release of gitdb that has been done yesterday. Is there something wrong in the dependencies?
This is how you can replicate this error in a docker container:
docker run -it ubuntu
apt update && apt install python-pip -y
pip install -U GitPython==2.1.14
Output:
Collecting GitPython==2.1.14
Downloading https://files.pythonhosted.org/packages/2e/93/c26103b14766b83d6c2f7d2a29aa8540058c2970f2c80b13c25720764b70/GitPython-2.1.14-py2.py3-none-any.whl (452kB)
100% |################################| 460kB 1.9MB/s
Collecting gitdb2>=2.0.0 (from GitPython==2.1.14)
Downloading https://files.pythonhosted.org/packages/97/97/6ad081c9f3efa1545fd11149f14602a53e2003c153312c8bfa825ba27b89/gitdb2-4.0.2.tar.gz
Collecting gitdb>=4.0.1 (from gitdb2>=2.0.0->GitPython==2.1.14)
Could not find a version that satisfies the requirement gitdb>=4.0.1 (from gitdb2>=2.0.0->GitPython==2.1.14) (from versions: 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4)
No matching distribution found for gitdb>=4.0.1 (from gitdb2>=2.0.0->GitPython==2.1.14)
I can't install
GitPython==2.1.14anymore, and I think it has to do with the release ofgitdbthat has been done yesterday. Is there something wrong in the dependencies?This is how you can replicate this error in a docker container:
docker run -it ubuntu apt update && apt install python-pip -y pip install -U GitPython==2.1.14Output: