通常、python 2.7 で pip 経由で gitpython をインストールしようとすると、python 3.x が必要であると通知されて失敗します。
この特定のスクリプト/プロセスは、今朝まで機能していました。
$ sudo pip install gitpython
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting gitpython
Using cached https://www.piwheels.org/simple/gitpython/GitPython-2.1.12-py2.py3-none-any.whl
GitPython requires Python '>=3.0, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' but the running Python is 2.7.16
Python 2.7.16 を実行しています
$ python --version
Python 2.7.16
現在のドキュメントを確認すると、Python 2.7 以降が要件としてリストされていることがわかります。私は何が欠けていますか?