Skip to content

Commit

Permalink
Merge pull request #803 from tj-django/feat/add-support-for-Django-4.2
Browse files Browse the repository at this point in the history
feat: add support for Django 4.2
  • Loading branch information
repo-ranger[bot] committed Jun 12, 2023
2 parents 1f02577 + f777745 commit e6b49ad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: true
matrix:
platform: [ubuntu-20.04, ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 3.11]
exclude:
- platform: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
],
install_requires=install_requires,
tests_require=["coverage"],
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ skipsdist = false
envlist =
py36-django{20,21,22,30,31,32,main}-{linux,macos,windows}
py37-django{20,21,22,30,31,32,main}-{linux,macos,windows}
py38-django{21,22,30,31,32,40,41,main}-{linux,macos,windows}
py39-django{21,22,30,31,32,40,41,main}-{linux,macos,windows}
py310-django{22,30,31,32,40,41,main}-{linux,macos,windows}
py311-django{22,30,31,32,40,41,main}-{linux}
py38-django{21,22,30,31,32,40,41,42,main}-{linux,macos,windows}
py39-django{21,22,30,31,32,40,41,42,main}-{linux,macos,windows}
py310-django{22,30,31,32,40,41,42,main}-{linux,macos,windows}
py311-django{22,30,31,32,40,41,42,main}-{linux}
skip_missing_interpreters = true

[gh-actions]
Expand Down Expand Up @@ -41,6 +41,7 @@ deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
main: https://github.com/django/django/archive/main.tar.gz
mock
coverage
Expand Down

0 comments on commit e6b49ad

Please sign in to comment.