Skip to content

Commit 5611362

Browse files
Merge branch 'develop'
2 parents 036cbf5 + f1204ef commit 5611362

File tree

45 files changed

+537
-821
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+537
-821
lines changed

.pylintrc

Lines changed: 0 additions & 365 deletions
This file was deleted.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ integ-test:
1515

1616
lint:
1717
# Liner performs static analysis to catch latent bugs
18-
pylint --rcfile .pylintrc aws_lambda_builders
18+
ruff aws_lambda_builders
1919

2020
# Command to run everytime you make changes to verify everything works
2121
dev: lint test

aws_lambda_builders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
# Changing version will trigger a new release!
66
# Please make the version change as the last step of your development.
7-
__version__ = "1.25.0"
7+
__version__ = "1.26.0"
88
RPC_PROTOCOL_VERSION = "0.3"

aws_lambda_builders/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import os
77
import logging
88

9-
from aws_lambda_builders.architecture import X86_64, ARM64
9+
from aws_lambda_builders.architecture import X86_64
1010
from aws_lambda_builders.registry import get_workflow, DEFAULT_REGISTRY
1111
from aws_lambda_builders.workflow import Capability
1212

aws_lambda_builders/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pathlib import Path
1010
from typing import Union
1111

12-
from aws_lambda_builders.architecture import X86_64, ARM64
12+
from aws_lambda_builders.architecture import ARM64
1313

1414
LOG = logging.getLogger(__name__)
1515

0 commit comments

Comments
 (0)