Skip to content

Commit

Permalink
Merge pull request #140 from fizyk/python3.11
Browse files Browse the repository at this point in the history
Bump python version support to 3.11 and 3.12 - closes #107
  • Loading branch information
shimizukawa authored Jul 27, 2024
2 parents d9b4c92 + a0c1fa6 commit 3b42163
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['3.2', '4.0', '4.2']
include:
- django-version: 'main'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ doc/_build/
coverage.xml
**/.env
examples/**/migrations/*
.idea/
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310}-dj{32,40,42,main}
py{38,39,310,311,312}-dj{32,40,42,main}
lint
check
skipsdist = True
Expand All @@ -10,6 +10,8 @@ python =
3.8: py38
3.9: py39
3.10: py310, lint, check
3.11: py311
3.12: py312

[gh-actions:env]
DJANGO =
Expand Down

0 comments on commit 3b42163

Please sign in to comment.