You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This morning our builds started to fail as soon we moved to 3.1.15.
I seems that 3.1.15 makes use of os.PathLike that was introduced in python 3.6.
From README.md seems that Python 3.5 is still supported.
REQUIREMENTS
GitPython needs the git executable to be installed on the system and available in your PATH for most operations. If it is not in your PATH, you can help GitPython find it by setting the GIT_PYTHON_GIT_EXECUTABLE=<path/to/git> environment variable.
Git (1.7.x or newer)
Python >= 3.5
class os.PathLike
An abstract base class for objects representing a file system path, e.g. pathlib.PurePath.
New in version 3.6.