1
0
Fork 0

add python 3.11 support (#1356)

* add python 3.11 support

* use beta version

* Python 11 is available.

Co-authored-by: Irina Truong <i.chernyavska@gmail.com>
This commit is contained in:
Dick Marinus 2022-11-11 19:31:41 +01:00 committed by GitHub
parent 431c256567
commit fa054a5546
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -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:

View File

@ -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",

View File

@ -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