Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sam-cli-bot committed Feb 6, 2023
2 parents 036cbf5 + f1204ef commit 5611362
Show file tree
Hide file tree
Showing 45 changed files with 537 additions and 821 deletions.
365 changes: 0 additions & 365 deletions .pylintrc

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ integ-test:

lint:
# Liner performs static analysis to catch latent bugs
pylint --rcfile .pylintrc aws_lambda_builders
ruff aws_lambda_builders

# Command to run everytime you make changes to verify everything works
dev: lint test
Expand Down
2 changes: 1 addition & 1 deletion aws_lambda_builders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

# Changing version will trigger a new release!
# Please make the version change as the last step of your development.
__version__ = "1.25.0"
__version__ = "1.26.0"
RPC_PROTOCOL_VERSION = "0.3"
2 changes: 1 addition & 1 deletion aws_lambda_builders/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os
import logging

from aws_lambda_builders.architecture import X86_64, ARM64
from aws_lambda_builders.architecture import X86_64
from aws_lambda_builders.registry import get_workflow, DEFAULT_REGISTRY
from aws_lambda_builders.workflow import Capability

Expand Down
2 changes: 1 addition & 1 deletion aws_lambda_builders/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path
from typing import Union

from aws_lambda_builders.architecture import X86_64, ARM64
from aws_lambda_builders.architecture import ARM64

LOG = logging.getLogger(__name__)

Expand Down
Loading

0 comments on commit 5611362

Please sign in to comment.