Skip to content

Commit

Permalink
Add tests for python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
slymit committed Apr 6, 2024
1 parent 5b491a0 commit 737353e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
tox_env: 'py39-sqlalchemy1.4'
- python: '3.10'
tox_env: 'py310-sqlalchemy1.4'
- python: '3.11'
tox_env: 'py311-sqlalchemy1.4'

- python: '3.7'
tox_env: 'py37-sqlalchemy2.0'
Expand All @@ -57,6 +59,8 @@ jobs:
tox_env: 'py39-sqlalchemy2.0'
- python: '3.10'
tox_env: 'py310-sqlalchemy2.0'
- python: '3.11'
tox_env: 'py311-sqlalchemy2.0'

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 4.6.4
envlist = {py37,py38,py39,py310}-sqlalchemy{1.4,2.0}
envlist = {py37,py38,py39,py310,py311}-sqlalchemy{1.4,2.0}

[testenv]
allowlist_externals = make
Expand All @@ -10,7 +10,7 @@ extras =
mysql
postgresql
deps =
{py37,py38,py39,py310}: pytest~=5.4.1
{py37,py38,py39,py310,py311}: pytest~=5.4.1
sqlalchemy1.4: sqlalchemy>=1.4,<2.0
sqlalchemy2.0: sqlalchemy>=2.0
commands =
Expand Down

0 comments on commit 737353e

Please sign in to comment.