File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ install:
2222 - python --version; git --version
2323 - git submodule update --init --recursive
2424 - git fetch --tags
25+ - pip install -r requirements.txt
2526 - pip install -r test-requirements.txt
2627 - pip install codecov sphinx
2728
Original file line number Diff line number Diff line change 3030is_win = (os .name == 'nt' )
3131is_posix = (os .name == 'posix' )
3232is_darwin = (os .name == 'darwin' )
33- defenc = sys .getdefaultencoding ()
33+ if hasattr (sys , 'getfilesystemencoding' ):
34+ defenc = sys .getfilesystemencoding ()
35+ if defenc is None :
36+ defenc = sys .getdefaultencoding ()
3437
3538if PY3 :
3639 import io
Original file line number Diff line number Diff line change 44# This module is part of GitPython and is released under
55# the BSD License: http://www.opensource.org/licenses/bsd-license.php
66
7+ from builtins import str
78from collections import namedtuple
89import logging
910import os
Original file line number Diff line number Diff line change 11gitdb2 (>= 2.0.0 )
2+ gitdb >= 0.6.4
3+ ddt >= 1.1.1
4+ future >= 0.9
You can’t perform that action at this time.
0 commit comments