From 4c3333bd4080fb82ac6c087ac766cac25ede39f9 Mon Sep 17 00:00:00 2001 From: Jeremy Thurgood Date: Tue, 13 Feb 2024 12:53:33 +0200 Subject: [PATCH] Skip Python 3.12 for now, it needs more work --- .github/workflows/test.yaml | 3 ++- CHANGELOG.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 58b3c7e..efb469e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,8 @@ jobs: - 5672:5672 strategy: matrix: - python-version: ["3.11", "3.12"] + # Python 3.12 support needs some work, apparently. + python-version: ["3.11"] steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 33be72e..c534fc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ - Fix connector startup error (#53, #54) ### Changed -- Drop support for Python 3.9 and 3.10, add 3.12 to CI (#55) +- Drop support for Python 3.9 and 3.10 (#55) ## [0.1.0] - 2023-04-05