From 1b82ab00eb1b44e4b622cdbc7d976d250195a5c0 Mon Sep 17 00:00:00 2001 From: Giovanni Grano Date: Thu, 26 Feb 2026 18:58:32 +0100 Subject: [PATCH 1/2] Fix test; this fails due to parity --- tests/integration/test_aws.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_aws.py b/tests/integration/test_aws.py index 9ef0232..0d9d44f 100644 --- a/tests/integration/test_aws.py +++ b/tests/integration/test_aws.py @@ -122,10 +122,11 @@ def test_sns_platform_endpoint_messages(self): topic_arn = client.create_topic(Name=topic_name)["TopicArn"] app_name = f"app-name-{short_uid()}" + attributes = {"PlatformPrincipal": "test", "PlatformCredential": "test"} platform_arn = client.create_platform_application( Name=app_name, Platform="APNS", - Attributes={}, + Attributes=attributes, )["PlatformApplicationArn"] endpoint_arn = client.create_platform_endpoint( From 84052210bd79855417626887641765a409f79069 Mon Sep 17 00:00:00 2001 From: Giovanni Grano Date: Thu, 26 Feb 2026 18:58:46 +0100 Subject: [PATCH 2/2] Set python version to 3.13 --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- .python-version | 2 ++ 3 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 .python-version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e9f5e7..0b2c5b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,10 +31,10 @@ jobs: # setuptools_scm requires git history to determine the version fetch-depth: 0 - - name: "Set up Python 3.11" + - name: "Set up Python 3.13" uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.13" - name: "Install uv" uses: astral-sh/setup-uv@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 229706e..acfe316 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Set up Python 3.11 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.13" - name: Install uv uses: astral-sh/setup-uv@v3 diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..ebe773d --- /dev/null +++ b/.python-version @@ -0,0 +1,2 @@ +3.13 +