Skip to content

Commit 85c0c44

Browse files
Merge branch 'changelog' into remove-get
2 parents f034cce + 8c5564b commit 85c0c44

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# - integ
3131
steps:
3232
- uses: actions/checkout@v4
33-
- uses: actions/setup-python@v6
33+
- uses: actions/setup-python@v4
3434
with:
3535
python-version: ${{ matrix.python }}
3636
architecture: ${{ matrix.platform.architecture }}

dev_requirements/linter-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bandit==1.7.5
1+
bandit==1.9.2
22
black==22.8.0
33
doc8==1.0.0
44
flake8==4.0.1
@@ -7,7 +7,7 @@ flake8-print==4.0.0
77
isort==5.10.1
88
mock==4.0.3
99
pyflakes==2.4.0
10-
pylint==2.12.2
10+
pylint==3.0.3
1111
pytest==7.4.0
1212
pytest-cov==4.1.0
1313
pytest-mock==3.11.1

src/aws_encryption_sdk_cli/internal/master_key_parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _discover_entry_points():
4747
_LOGGER.debug("Discovering master key provider plugins")
4848

4949
for dist in distributions():
50-
dist_name = dist.metadata["Name"] or dist.metadata["name"] or "unknown"
50+
dist_name = dist.metadata['Name'] or dist.metadata['name'] or "unknown"
5151

5252
for entry_point in dist.entry_points:
5353
if entry_point.group != MASTER_KEY_PROVIDERS_ENTRY_POINT:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311,312}-{local,integ,examples},
3+
py{310,311,312}-{local,integ,examples},
44
mypy-py{3},
55
bandit, doc8, readme, docs,
66
flake8{,-tests,-examples}, pylint{,-tests,-examples},

0 commit comments

Comments
 (0)