File tree 4 files changed +1
-9
lines changed
4 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ install:
22
22
- python --version; git --version
23
23
- git submodule update --init --recursive
24
24
- git fetch --tags
25
- - pip install -r requirements.txt
26
25
- pip install -r test-requirements.txt
27
26
- pip install codecov sphinx
28
27
Original file line number Diff line number Diff line change 30
30
is_win = (os .name == 'nt' )
31
31
is_posix = (os .name == 'posix' )
32
32
is_darwin = (os .name == 'darwin' )
33
- if hasattr (sys , 'getfilesystemencoding' ):
34
- defenc = sys .getfilesystemencoding ()
35
- if defenc is None :
36
- defenc = sys .getdefaultencoding ()
33
+ defenc = sys .getdefaultencoding ()
37
34
38
35
if PY3 :
39
36
import io
Original file line number Diff line number Diff line change 4
4
# This module is part of GitPython and is released under
5
5
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6
6
7
- from builtins import str
8
7
from collections import namedtuple
9
8
import logging
10
9
import os
Original file line number Diff line number Diff line change 1
1
gitdb2 (>= 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