Skip to content

Commit 4e3dc7c

Browse files
committed
Test through python 3.12
1 parent 45b9790 commit 4e3dc7c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.7, 3.8, 3.9, "3.10"]
14+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1515

1616
steps:
1717
- uses: actions/checkout@v2

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is a compact and simple JSON-RPC client implementation interface python cod
1111
Main Features
1212
-------------
1313

14-
* Python 3.6, 3.7, 3.8 & 3.9 compatible
14+
* Python 3.7 - 3.12 compatible
1515
* Supports nested namespaces (eg. `app.users.getUsers()`)
1616
* 100% test coverage
1717

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
'Programming Language :: Python :: 3.8',
3030
'Programming Language :: Python :: 3.9',
3131
'Programming Language :: Python :: 3.10',
32+
'Programming Language :: Python :: 3.11',
33+
'Programming Language :: Python :: 3.12',
3234
],
3335

3436
)

0 commit comments

Comments
 (0)