Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7b488a0

Browse files
committedNov 8, 2024·
Initial commit for Python 3.13
1 parent c541dfa commit 7b488a0

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed
 

‎.github/workflows/publish_v3_layer.yml

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -232,29 +232,28 @@ jobs:
232232
# where a new release creates a new doc (2.16.0) while layers are still pointing to 2.15
233233
# because the PR has to be merged while release process is running
234234

235-
# UNCOMMENT LEO
236-
# update_v3_layer_arn_docs:
237-
# needs: prod
238-
# outputs:
239-
# temp_branch: ${{ steps.create-pr.outputs.temp_branch }}
240-
# runs-on: ubuntu-latest
241-
# permissions:
242-
# # lower privilege propagated from parent workflow (release.yml)
243-
# contents: write
244-
# pull-requests: write
245-
# id-token: none
246-
# pages: none
247-
# steps:
248-
# - name: Checkout repository # reusable workflows start clean, so we need to checkout again
249-
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
250-
# with:
251-
# ref: ${{ env.RELEASE_COMMIT }}
235+
update_v3_layer_arn_docs:
236+
needs: prod
237+
outputs:
238+
temp_branch: ${{ steps.create-pr.outputs.temp_branch }}
239+
runs-on: ubuntu-latest
240+
permissions:
241+
# lower privilege propagated from parent workflow (release.yml)
242+
contents: write
243+
pull-requests: write
244+
id-token: none
245+
pages: none
246+
steps:
247+
- name: Checkout repository # reusable workflows start clean, so we need to checkout again
248+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
249+
with:
250+
ref: ${{ env.RELEASE_COMMIT }}
252251

253-
# - name: Restore sealed source code
254-
# uses: ./.github/actions/seal-restore
255-
# with:
256-
# integrity_hash: ${{ inputs.source_code_integrity_hash }}
257-
# artifact_name: ${{ inputs.source_code_artifact_name }}
252+
- name: Restore sealed source code
253+
uses: ./.github/actions/seal-restore
254+
with:
255+
integrity_hash: ${{ inputs.source_code_integrity_hash }}
256+
artifact_name: ${{ inputs.source_code_artifact_name }}
258257

259258
# UNCOMMENT THIS
260259
# - name: Download CDK layer artifacts

‎examples/batch_processing/src/pydantic_kinesis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ class Order(BaseModel):
1717
item: dict
1818

1919

20-
class OrderKinesisPayloadRecord(KinesisDataStreamRecordPayload): # type: ignore[override]
20+
class OrderKinesisPayloadRecord(KinesisDataStreamRecordPayload): # type: ignore[override]
2121
data: Json[Order]
2222

2323

24-
class OrderKinesisRecord(KinesisDataStreamRecord): # type: ignore[override]
24+
class OrderKinesisRecord(KinesisDataStreamRecord): # type: ignore[override]
2525
kinesis: OrderKinesisPayloadRecord
2626

2727

0 commit comments

Comments
 (0)
Please sign in to comment.