Skip to content

Commit

Permalink
fix: requests version pin and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sriram-mv committed Dec 20, 2018
1 parent b79f2fd commit 381a7c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ docker>=3.3.0
dateparser~=0.7
python-dateutil~=2.6
pathlib2~=2.3.2; python_version<"3.4"
requests~=2.20.0
requests==2.20.1
aws_lambda_builders==0.0.5
serverlessrepo==0.1.5
1 change: 0 additions & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ pylint==1.7.2
pytest==3.0.7
py==1.4.33
mock==2.0.0
requests==2.20.0
parameterized==0.6.1
pathlib2==2.3.2; python_version<"3.4"
futures==3.2.0; python_version<"3.2.3"
Expand Down
5 changes: 4 additions & 1 deletion tests/integration/buildcmd/test_build_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
import json
import logging

from pathlib import Path
try:
from pathlib import Path
except ImportError:
from pathlib2 import Path
from parameterized import parameterized

from samcli.yamlhelper import yaml_parse
Expand Down

0 comments on commit 381a7c5

Please sign in to comment.