From 76f8ea6708921d054d6eda0beea087ef1e4e18dd Mon Sep 17 00:00:00 2001 From: Sindy Li Date: Thu, 12 Dec 2024 16:19:31 -0800 Subject: [PATCH] Add support for Python 3.12 --- .github/workflows/build-test.yml | 5 +++-- setup.py | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 33d6449..daf809f 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -5,9 +5,9 @@ name: Build and Test on: push: - branches: [ "main" ] + branches: [ "main", "release/*" ] pull_request: - branches: [ "main" ] + branches: [ "main", "release/*" ] permissions: contents: read @@ -24,6 +24,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 92c3682..8c3d44c 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Database", "Topic :: Software Development", "Topic :: Software Development :: Libraries",