From d41da66e6066044310f4278dfb90c1187ee35fa9 Mon Sep 17 00:00:00 2001 From: doronz Date: Thu, 23 Nov 2023 10:35:15 +0200 Subject: [PATCH] add python3.12 support --- .github/workflows/python-app.yml | 2 +- src/rpcclient/pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index d992ae14..6bdd02d1 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", 3.11 ] + python-version: [ 3.8, 3.9, "3.10", 3.11, 3.12 ] os: [ ubuntu-latest, macos-latest, windows-latest ] steps: diff --git a/src/rpcclient/pyproject.toml b/src/rpcclient/pyproject.toml index 363ba3c9..d5ae6618 100644 --- a/src/rpcclient/pyproject.toml +++ b/src/rpcclient/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", ] dynamic = ["dependencies"]