Skip to content

Commit

Permalink
Add support of Python 3.10 and 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaty committed Jul 28, 2023
1 parent 2bade10 commit 7d70a64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ jobs:
strategy:
matrix:
python-version:
- 3.8
- 3.9
- "3.8"
- "3.9"
- "3.10"
- "3.11"
django-version:
- "3.1"
- "3.2"
Expand Down Expand Up @@ -63,7 +65,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -81,7 +83,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -91,4 +93,3 @@ jobs:
- name: Build documentation
run: |
make docs
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords = django logging correlation id debugging
platform = any
project_urls =
Expand Down

0 comments on commit 7d70a64

Please sign in to comment.