mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add warning about GitPython 2.0.9 incompatibility with Python 2.6 (#37099)
This commit is contained in:
parent
39d59ab0df
commit
68eeb29783
1 changed files with 15 additions and 0 deletions
|
@ -138,6 +138,21 @@ install GitPython`` (or ``easy_install GitPython``) as root.
|
|||
Therefore, it may be necessary to delete the GitPython directory from the
|
||||
build cache in order to ensure that the specified version is installed.
|
||||
|
||||
.. warning::
|
||||
|
||||
GitPython_ 2.0.9 and newer is not compatible with Python 2.6. If installing
|
||||
GitPython_ using pip on a machine running Python 2.6, make sure that a
|
||||
version earlier than 2.0.9 is installed. This can be done on the CLI by
|
||||
running ``pip install 'GitPython<2.0.9'``, or in a :py:func:`pip.installed
|
||||
<salt.states.pip_state.installed>` state using the following SLS:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
GitPython:
|
||||
pip.installed:
|
||||
- name: 'GitPython < 2.0.9'
|
||||
|
||||
|
||||
Dulwich
|
||||
-------
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue