Skip to content

Commit

Permalink
chore: update dependencies (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Jan 14, 2024
1 parent 7243170 commit ed42237
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"devDependencies": {
"pyright": "1.1.316"
"pyright": "1.1.345"
}
}
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ keywords = ["AWS", "EC2", "command line", "cli"]
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.8"
dependencies = [
"boto3==1.28.1",
"importlib_resources==5.12.0",
"boto3==1.34.19",
"importlib_resources==6.1.1",
"pytoml==0.1.21",
"pytz==2023.3",
"pytz==2023.3.post1",
"requests==2.31.0",
"rich==13.4.2",
"typing_extensions==4.7.1",
"rich==13.7.0",
"typing_extensions==4.9.0",
]

[project.optional-dependencies]
dev = [
"build~=0.7",
"build~=1.0",
"boto3-stubs[ec2,compute-optimizer,ssm,s3]",
"cogapp~=3.3",
"dirty-equals~=0.6",
"moto[ec2]==4.2.9",
"pre-commit~=2.20",
"moto[ec2]~=4.2.13",
"pre-commit~=3.5",
"pyfakefs~=5.1",
"pytest~=7.4",
"pytest-mock~=3.11",
Expand Down
2 changes: 1 addition & 1 deletion src/aec/util/docgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Any, Iterator

from moto import mock_ec2
from moto.ec2 import ec2_backends
from moto.ec2.models import ec2_backends
from moto.ec2.models.amis import AMIS

import aec.command.ec2 as ec2
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compute_optimizer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest
from moto import mock_ec2
from moto.ec2 import ec2_backends
from moto.ec2.models import ec2_backends
from moto.ec2.models.amis import AMIS

from aec.command.compute_optimizer import describe_instances_uptime
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import pytest
from dirty_equals import IsDatetime
from moto import mock_ec2, mock_iam
from moto.ec2 import ec2_backends
from moto.ec2.models import ec2_backends
from moto.ec2.models.amis import AMIS
from mypy_boto3_ec2.type_defs import TagTypeDef
from pytest_mock import MockFixture
Expand Down

0 comments on commit ed42237

Please sign in to comment.