Skip to content

Commit ed42237

Browse files
authored
chore: update dependencies (#446)
1 parent 7243170 commit ed42237

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"devDependencies": {
3-
"pyright": "1.1.316"
3+
"pyright": "1.1.345"
44
}
55
}

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ keywords = ["AWS", "EC2", "command line", "cli"]
88
classifiers = ["License :: OSI Approved :: MIT License"]
99
requires-python = ">=3.8"
1010
dependencies = [
11-
"boto3==1.28.1",
12-
"importlib_resources==5.12.0",
11+
"boto3==1.34.19",
12+
"importlib_resources==6.1.1",
1313
"pytoml==0.1.21",
14-
"pytz==2023.3",
14+
"pytz==2023.3.post1",
1515
"requests==2.31.0",
16-
"rich==13.4.2",
17-
"typing_extensions==4.7.1",
16+
"rich==13.7.0",
17+
"typing_extensions==4.9.0",
1818
]
1919

2020
[project.optional-dependencies]
2121
dev = [
22-
"build~=0.7",
22+
"build~=1.0",
2323
"boto3-stubs[ec2,compute-optimizer,ssm,s3]",
2424
"cogapp~=3.3",
2525
"dirty-equals~=0.6",
26-
"moto[ec2]==4.2.9",
27-
"pre-commit~=2.20",
26+
"moto[ec2]~=4.2.13",
27+
"pre-commit~=3.5",
2828
"pyfakefs~=5.1",
2929
"pytest~=7.4",
3030
"pytest-mock~=3.11",

src/aec/util/docgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from typing import Any, Iterator
66

77
from moto import mock_ec2
8-
from moto.ec2 import ec2_backends
8+
from moto.ec2.models import ec2_backends
99
from moto.ec2.models.amis import AMIS
1010

1111
import aec.command.ec2 as ec2

tests/test_compute_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22
from moto import mock_ec2
3-
from moto.ec2 import ec2_backends
3+
from moto.ec2.models import ec2_backends
44
from moto.ec2.models.amis import AMIS
55

66
from aec.command.compute_optimizer import describe_instances_uptime

tests/test_ec2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import pytest
88
from dirty_equals import IsDatetime
99
from moto import mock_ec2, mock_iam
10-
from moto.ec2 import ec2_backends
10+
from moto.ec2.models import ec2_backends
1111
from moto.ec2.models.amis import AMIS
1212
from mypy_boto3_ec2.type_defs import TagTypeDef
1313
from pytest_mock import MockFixture

0 commit comments

Comments
 (0)