Skip to content

Commit

Permalink
add support to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jairhenrique committed Nov 18, 2022
1 parent 1baa73a commit aef5ba7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
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"]
exclude:
# Python 3.6 is not compatible with 4.0
Expand All @@ -20,7 +21,12 @@ jobs:
# Python 3.7 is not compatible with 4.1
- python-version: "3.7"
django-version: "4.1"
fail-fast: false
# Python 3.11 is not compatible with 3.2
- python-version: "3.11"
django-version: "3.2"
# Python 3.11 is not compatible with 3.2
- python-version: "3.11"
django-version: "4.0"
steps:
- uses: actions/checkout@v3

Expand All @@ -42,4 +48,4 @@ jobs:
coverage report
coverage xml
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit aef5ba7

Please sign in to comment.