From fa054a5546d33ed34586513f71f371f81ef6ecfd Mon Sep 17 00:00:00 2001 From: Dick Marinus Date: Fri, 11 Nov 2022 19:31:41 +0100 Subject: [PATCH] add python 3.11 support (#1356) * add python 3.11 support * use beta version * Python 11 is available. Co-authored-by: Irina Truong --- .github/workflows/ci.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5b33bd9..25f84df7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] services: postgres: diff --git a/setup.py b/setup.py index dbee0a6b..cfdf3e1c 100644 --- a/setup.py +++ b/setup.py @@ -66,6 +66,7 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: SQL", "Topic :: Database", "Topic :: Database :: Front-Ends", diff --git a/tox.ini b/tox.ini index 8c6a27dd..df18a209 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, py39, py310 +envlist = py37, py38, py39, py310, py311 [testenv] deps = pytest>=2.7.0,<=3.0.7 mock>=1.0.1