From 4e3dc7c8477b03809c15039d78413a721c4c7544 Mon Sep 17 00:00:00 2001 From: Emily Love Mills Date: Mon, 11 Dec 2023 11:14:54 -0600 Subject: [PATCH] Test through python 3.12 --- .github/workflows/main.yml | 2 +- README.rst | 2 +- setup.py | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 136e885..5a54cff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/README.rst b/README.rst index 9d09064..b091e5d 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,7 @@ This is a compact and simple JSON-RPC client implementation interface python cod Main Features ------------- -* Python 3.6, 3.7, 3.8 & 3.9 compatible +* Python 3.7 - 3.12 compatible * Supports nested namespaces (eg. `app.users.getUsers()`) * 100% test coverage diff --git a/setup.py b/setup.py index 5086b0a..c132432 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,8 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], )