Skip to content

Commit

Permalink
Merge pull request #718 from efiop/master
Browse files Browse the repository at this point in the history
build: remove unneeded deps of boto
  • Loading branch information
efiop authored May 17, 2018
2 parents cb57446 + 0f8f682 commit 03d4774
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 12 deletions.
9 changes: 0 additions & 9 deletions dvc/cloud/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,6 @@

import boto3
import botocore
try:
import httplib
except ImportError:
# Python3 workaround for ResumableDownloadHandler.
# See https://github.com/boto/boto/pull/3755.
import sys
import http.client as httplib
sys.modules['httplib'] = httplib
from boto.s3.resumable_download_handler import ResumableDownloadHandler

from dvc.config import Config
from dvc.logger import Logger
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
boto3==1.7.4
ply==3.8 # required by google-gax
google-compute-engine==2.4.1 #required by boto
configparser>=3.5.0
zc.lockfile>=1.2.1
future>=0.16.0
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

install_requires = [
"boto3==1.7.4",
"ply==3.8", #required by google-gax
"google-compute-engine==2.4.1", #required by boto
"ply==3.8", # required by google-gax
"configparser>=3.5.0",
"zc.lockfile>=1.2.1",
"future>=0.16.0",
Expand Down

0 comments on commit 03d4774

Please sign in to comment.