Skip to content

Commit 45d8ced

Browse files
Merge branch 'develop'
2 parents 0e774da + 9406094 commit 45d8ced

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

aws_lambda_builders/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Changing version will trigger a new release!
66
# Please make the version change as the last step of your development.
77

8-
__version__ = "1.47.0"
8+
__version__ = "1.48.0"
99
RPC_PROTOCOL_VERSION = "0.3"

aws_lambda_builders/validator.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"python3.11": [ARM64, X86_64],
2020
"python3.12": [ARM64, X86_64],
2121
"ruby3.2": [ARM64, X86_64],
22+
"ruby3.3": [ARM64, X86_64],
2223
"java8": [ARM64, X86_64],
2324
"java11": [ARM64, X86_64],
2425
"java17": [ARM64, X86_64],

requirements/dev.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
coverage==7.4.3
1+
coverage==7.4.4
22
flake8==3.8.4
3-
pytest-cov==4.1.0
3+
pytest-cov==5.0.0
44

55
# Test requirements
66
pytest>=6.1.1
77
parameterized==0.9.0
8-
pyelftools~=0.30 # Used to verify the generated Go binary architecture in integration tests (utils.py)
8+
pyelftools~=0.31 # Used to verify the generated Go binary architecture in integration tests (utils.py)
99

1010
# formatter
11-
black==24.2.0
12-
ruff==0.2.2
11+
black==24.3.0
12+
ruff==0.3.4

tests/integration/workflows/ruby_bundler/test_ruby.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
("runtime",),
2020
[
2121
("ruby3.2",),
22+
("ruby3.3",),
2223
],
2324
)
2425
class TestRubyWorkflow(TestCase):

0 commit comments

Comments
 (0)