Skip to content

Commit

Permalink
Merge pull request #258 from sdolemelipone/bump-python
Browse files Browse the repository at this point in the history
Add Python 3.11
  • Loading branch information
sdolemelipone committed Jan 11, 2023
2 parents 84fa1ea + a03e430 commit ef9b8b1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Tests
on: [push, pull_request]
env:
LATEST_PYTHON_VERSION: "3.10"
LATEST_PYTHON_VERSION: "3.11"
jobs:
tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
name: Python ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ Python Django
3.6-3.7 2.2–3.2
3.8-3.9 2.2–4.1
3.10 3.2-4.1
3.11 4.1
======== ==========

- Added support for Django 4.0, 4.1 and Python 3.10.
- Added support for Django 4.0, 4.1 and Python 3.10, 3.11.
- Removed support for Django 2.1

0.14.0 (2021-06-08)
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist = py35-django{22}
py38-django{22,30,31,32,40,41,master}
py39-django{22,30,31,32,40,41,master}
py310-django{32,40,41,master}
py311-django{41,master}
black
isort
flake8
Expand All @@ -17,7 +18,8 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310, docs
3.10: py310
3.11: py311, docs

[testenv]
setenv =
Expand Down Expand Up @@ -63,7 +65,7 @@ commands =
flake8 {toxinidir} {posargs}

[testenv:docs]
whitelist_externals=make
allowlist_externals=make
changedir = docs
deps =
sphinx
Expand Down

0 comments on commit ef9b8b1

Please sign in to comment.