diff --git a/build.py b/build.py index 6be0739..862cd7d 100644 --- a/build.py +++ b/build.py @@ -9,6 +9,7 @@ import zipfile import boto3 +import requests import troposphere.awslambda import troposphere.cloudformation import troposphere.config @@ -20,7 +21,6 @@ import troposphere.s3 import troposphere.sns import troposphere.stepfunctions -from botocore.vendored import requests def add_lambda_role(template: troposphere.Template) -> troposphere.iam.Role: diff --git a/poetry.lock b/poetry.lock index 2fd7209..9536302 100644 --- a/poetry.lock +++ b/poetry.lock @@ -72,7 +72,7 @@ crt = ["awscrt (==0.10.8)"] name = "certifi" version = "2020.12.5" description = "Python package for providing Mozilla's CA Bundle." -category = "dev" +category = "main" optional = false python-versions = "*" @@ -93,7 +93,7 @@ six = "*" name = "chardet" version = "4.0.0" description = "Universal encoding detector for Python 2 and 3" -category = "dev" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" @@ -125,7 +125,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" name = "idna" version = "2.10" description = "Internationalized Domain Names in Applications (IDNA)" -category = "dev" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" @@ -293,7 +293,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" name = "requests" version = "2.25.1" description = "Python HTTP for Humans." -category = "dev" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" @@ -508,7 +508,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pyt [metadata] lock-version = "1.1" python-versions = "^3.6" -content-hash = "a8ce548396a15b19c69177387c0bbc4c8269456f8f5f03116b9783aff2ac2701" +content-hash = "4ef4b630032c9844034666442479f2531b47a2e7e19c985c5348d481bc16e5b6" [metadata.files] alabaster = [ diff --git a/pyproject.toml b/pyproject.toml index fab06a2..b90c121 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ build-backend = "poetry.core.masonry.api" python = "^3.6" boto3 = "^1.17.38" troposphere = "^2.7.0" +requests = "^2.25.1" [tool.poetry.dev-dependencies] pytest = "^6.2.2"