Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
samjarrett committed Mar 7, 2021
1 parent 8c4c05b commit 29bf827
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 28 deletions.
35 changes: 15 additions & 20 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,53 +12,49 @@ attrs==20.3.0
# via pytest
black==20.8b1
# via -r dev-requirements.in
boto3-stubs[cloudformation]==1.12.41.0
boto3-stubs[cloudformation]==1.17.22.0
# via -r dev-requirements.in
boto3==1.17.17
# via
# -r requirements.txt
# mypy-boto3
botocore==1.20.17
boto3==1.17.22
# via -r requirements.txt
botocore==1.20.22
# via
# -r requirements.txt
# boto3
# s3transfer
click==7.1.2
# via black
coverage==5.3
coverage==5.5
# via pytest-cov
iniconfig==1.1.1
# via pytest
isort==5.7.0
# via
# -r dev-requirements.in
# pylint
jmespath==0.9.5
jmespath==0.10.0
# via
# -r requirements.txt
# boto3
# botocore
lazy-object-proxy==1.4.3
lazy-object-proxy==1.5.2
# via astroid
mccabe==0.6.1
# via pylint
mypy-boto3-cloudformation==1.12.41.0
# via boto3-stubs
mypy-boto3==1.12.41.0
mypy-boto3-cloudformation==1.17.22.0
# via boto3-stubs
mypy-extensions==0.4.3
# via
# black
# mypy
mypy==0.812
# via -r dev-requirements.in
packaging==20.4
packaging==20.9
# via pytest
pathspec==0.8.1
# via black
pluggy==0.13.1
# via pytest
py==1.9.0
py==1.10.0
# via pytest
pylint==2.7.2
# via -r dev-requirements.in
Expand All @@ -74,31 +70,30 @@ python-dateutil==2.8.1
# via
# -r requirements.txt
# botocore
regex==2020.10.28
regex==2020.11.13
# via black
s3transfer==0.3.3
s3transfer==0.3.4
# via
# -r requirements.txt
# boto3
six==1.14.0
six==1.15.0
# via
# -r requirements.txt
# packaging
# python-dateutil
toml==0.10.2
# via
# black
# pylint
# pytest
typed-ast==1.4.1
typed-ast==1.4.2
# via
# black
# mypy
typing-extensions==3.7.4.3
# via
# black
# mypy
urllib3==1.25.9
urllib3==1.26.3
# via
# -r requirements.txt
# botocore
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
#
# pip-compile requirements.in
#
boto3==1.17.17
boto3==1.17.22
# via -r requirements.in
botocore==1.20.17
botocore==1.20.22
# via
# boto3
# s3transfer
jmespath==0.9.5
jmespath==0.10.0
# via
# boto3
# botocore
python-dateutil==2.8.1
# via botocore
s3transfer==0.3.3
s3transfer==0.3.4
# via boto3
six==1.14.0
six==1.15.0
# via python-dateutil
urllib3==1.25.9
urllib3==1.26.3
# via botocore
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
StubbedClient = namedtuple("StubbedClient", ["stub", "client"])


@pytest.yield_fixture
@pytest.fixture
def fake_cloudformation_client() -> StubbedClient:
"""Creates a stubbed boto3 CloudFormation client"""
cloudformation = boto3.client("cloudformation")
Expand All @@ -21,7 +21,7 @@ def fake_cloudformation_client() -> StubbedClient:
stubbed_client.assert_no_pending_responses()


@pytest.yield_fixture
@pytest.fixture
def demo_template():
"""Returns the contents of demo.yml"""
dirname = os.path.dirname(__file__)
Expand Down

0 comments on commit 29bf827

Please sign in to comment.