Skip to content

Commit f032217

Browse files
Merge branch 'develop'
2 parents e973ec2 + 17d4d4c commit f032217

File tree

5 files changed

+20
-17
lines changed

5 files changed

+20
-17
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- "3.9"
6767
- "3.10"
6868
steps:
69-
- uses: actions/checkout@v3
69+
- uses: actions/checkout@v4
7070
- uses: actions/setup-python@v4
7171
with:
7272
python-version: ${{ matrix.python }}
@@ -94,7 +94,7 @@ jobs:
9494
- 8
9595
- 9
9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898
- uses: actions/setup-python@v4
9999
with:
100100
python-version: ${{ matrix.python }}
@@ -127,7 +127,7 @@ jobs:
127127
- 8
128128
- 9
129129
steps:
130-
- uses: actions/checkout@v3
130+
- uses: actions/checkout@v4
131131
- uses: actions/setup-python@v4
132132
with:
133133
python-version: ${{ matrix.python }}
@@ -157,7 +157,7 @@ jobs:
157157
- "3.10"
158158
- "3.11"
159159
steps:
160-
- uses: actions/checkout@v3
160+
- uses: actions/checkout@v4
161161
- uses: actions/setup-python@v4
162162
with:
163163
python-version: ${{ matrix.python }}
@@ -184,7 +184,7 @@ jobs:
184184
- "3.10"
185185
- "3.11"
186186
steps:
187-
- uses: actions/checkout@v3
187+
- uses: actions/checkout@v4
188188
- uses: actions/setup-python@v4
189189
with:
190190
python-version: ${{ matrix.python }}
@@ -214,7 +214,7 @@ jobs:
214214
- "3.10"
215215
- "3.11"
216216
steps:
217-
- uses: actions/checkout@v3
217+
- uses: actions/checkout@v4
218218
- uses: actions/setup-python@v4
219219
with:
220220
python-version: ${{ matrix.python }}
@@ -242,7 +242,7 @@ jobs:
242242
- "3.10"
243243
- "3.11"
244244
steps:
245-
- uses: actions/checkout@v3
245+
- uses: actions/checkout@v4
246246
- uses: actions/setup-python@v4
247247
with:
248248
python-version: ${{ matrix.python }}
@@ -266,7 +266,7 @@ jobs:
266266
- "3.10"
267267
- "3.11"
268268
steps:
269-
- uses: actions/checkout@v3
269+
- uses: actions/checkout@v4
270270
- uses: actions/setup-python@v4
271271
with:
272272
python-version: ${{ matrix.python }}
@@ -290,7 +290,7 @@ jobs:
290290
- "3.10"
291291
- "3.11"
292292
steps:
293-
- uses: actions/checkout@v3
293+
- uses: actions/checkout@v4
294294
- uses: actions/setup-python@v4
295295
with:
296296
python-version: ${{ matrix.python }}
@@ -320,7 +320,7 @@ jobs:
320320
- "3.10"
321321
- "3.11"
322322
steps:
323-
- uses: actions/checkout@v3
323+
- uses: actions/checkout@v4
324324
- uses: actions/setup-python@v4
325325
with:
326326
python-version: ${{ matrix.python }}
@@ -349,7 +349,7 @@ jobs:
349349
rust:
350350
- stable
351351
steps:
352-
- uses: actions/checkout@v3
352+
- uses: actions/checkout@v4
353353
- uses: actions/setup-python@v4
354354
with:
355355
python-version: ${{ matrix.python }}

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL

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.37.0"
7+
__version__ = "1.38.0"
88
RPC_PROTOCOL_VERSION = "0.3"

aws_lambda_builders/workflows/python_pip/packager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ class DependencyBuilder(object):
193193
_MANYLINUX_LEGACY_MAP = {
194194
"manylinux1_x86_64": "manylinux_2_5_x86_64",
195195
"manylinux2010_x86_64": "manylinux_2_12_x86_64",
196+
"manylinux2014_aarch64": "manylinux_2_17_aarch64",
196197
"manylinux2014_x86_64": "manylinux_2_17_x86_64",
197198
}
198199

requirements/dev.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
coverage==7.2.7
1+
coverage==7.2.7; python_version < '3.8'
2+
coverage==7.3.1; python_version >= '3.8'
23
flake8==3.3.0; python_version < '3.8'
34
flake8==3.8.4; python_version >= '3.8'
45
pytest-cov==4.1.0
@@ -8,8 +9,9 @@ isort>=4.2.5,<5; python_version < '3.8'
89
# Test requirements
910
pytest>=6.1.1
1011
parameterized==0.9.0
11-
pyelftools~=0.29 # Used to verify the generated Go binary architecture in integration tests (utils.py)
12+
pyelftools~=0.30 # Used to verify the generated Go binary architecture in integration tests (utils.py)
1213

1314
# formatter
14-
black==23.3.0
15-
ruff==0.0.284
15+
black==22.6.0; python_version < "3.8"
16+
black==23.9.1; python_version >= "3.8"
17+
ruff==0.0.288

0 commit comments

Comments
 (0)