Skip to content

Commit e7be1bd

Browse files
dependabot[bot]moelasmarjfuss
authored
chore(deps-dev): bump ruff from 0.0.278 to 0.0.280 in /requirements (#527)
* chore(deps-dev): bump ruff from 0.0.278 to 0.0.280 in /requirements Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.278 to 0.0.280. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](astral-sh/ruff@v0.0.278...v0.0.280) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fix PLR1714 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mohamed Elasmar <[email protected]> Co-authored-by: Jacob Fuss <[email protected]>
1 parent e575e40 commit e7be1bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aws_lambda_builders/workflows/python_pip/packager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ def _is_compatible_wheel_filename(self, filename):
411411
# Deploying python 3 function which means we need cp37m abi
412412
# We can also accept abi3 which is the CPython 3 Stable ABI and
413413
# will work on any version of python 3.
414-
if abi == lambda_runtime_abi or abi == "abi3":
414+
if abi in (lambda_runtime_abi, "abi3"):
415415
return True
416416
# Don't know what we have but it didn't pass compatibility tests.
417417
return False

requirements/dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ pyelftools~=0.29 # Used to verify the generated Go binary architecture in integr
1212

1313
# formatter
1414
black==23.3.0
15-
ruff==0.0.278
15+
ruff==0.0.280

0 commit comments

Comments
 (0)