Merge pull request #543 from kennethreitz/test_patches

Fixes for the failing tests
This commit is contained in:
2017-09-14 10:34:48 -04:00
committed by GitHub
3 changed files with 5 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
{
"python.linting.pylintEnabled": false
}
+1 -1
View File
@@ -3,4 +3,4 @@
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = '7.0.2'
__version__ = '7.0.1'
+1 -1
View File
@@ -47,8 +47,8 @@ def resolve_deps(deps, sources=None, verbose=False, python=False):
"""
# If a version of python is required...
original_sys_info = sys.version_info
if python:
original_sys_info = sys.version_info
sys.version_info = namedtuple('fake_version_info', ['major', 'minor', 'micro', 'releaselevel', 'serial'])
python = python.split('.')