Skip to content

Commit

Permalink
[general] Added Python 3.11 support (#1196)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcail committed Nov 23, 2022
1 parent 04676b5 commit 981fe2b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.0", "4.1", "main"]
exclude:
- python-version: "3.7"
Expand All @@ -24,6 +24,10 @@ jobs:
django-version: "4.1"
- python-version: "3.7"
django-version: "main"
- python-version: "3.11"
django-version: "3.2"
- python-version: "3.11"
django-version: "4.0"

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -24,6 +24,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
zip_safe=False
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -3,8 +3,8 @@ minversion = 1.9
envlist =
py{3.7,3.8,3.9,3.10}-django3.2
py{3.8,3.9,3.10}-django4.0
py{3.8,3.9,3.10}-django4.1
py{3.8,3.9,3.10}-djangomain
py{3.8,3.9,3.10,3.11}-django4.1
py{3.8,3.9,3.10,3.11}-djangomain
flake8

[testenv]
Expand Down

0 comments on commit 981fe2b

Please sign in to comment.