Skip to content

Commit

Permalink
feat: add support for python 3.10 and 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jpvanhal committed Aug 7, 2023
1 parent 28f129b commit 1be54a1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11

- name: Install dependencies
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
fail-fast: false
matrix:
include:
- name: "Python 3.11"
python: "3.11"

- name: "Python 3.10"
python: "3.10"

- name: "Python 3.9"
python: "3.9"

Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Unreleased
- **BREAKING CHANGE**: Drop support for Python 3.6 and 3.7
- **BREAKING CHANGE**: Drop support for SQLAlchemy 1.3
- Remove ``validators`` dependency
- Add support for Python 3.10 and 3.11

1.4.1 (2021-06-15)
^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def get_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py38,py39,pypy3}-sqla{1.4}, lint
envlist = {py38,py39,310,311,pypy3}-sqla{1.4}, lint

[testenv]
deps=
Expand Down

0 comments on commit 1be54a1

Please sign in to comment.