Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for Django 4.2 #1236

Merged
merged 1 commit into from Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -16,10 +16,12 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.1", "main"]
django-version: ["3.2", "4.1", "4.2", "main"]
exclude:
- python-version: "3.7"
django-version: "4.1"
- python-version: "3.7"
django-version: "4.2"
- python-version: "3.7"
django-version: "main"
- python-version: "3.8"
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -13,6 +13,7 @@ classifiers =
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Expand Up @@ -3,6 +3,7 @@ minversion = 1.9
envlist =
py{3.7,3.8,3.9,3.10}-django3.2
py{3.8,3.9,3.10,3.11}-django4.1
py{3.8,3.9,3.10,3.11}-django4.2
py{3.10,3.11,3.12}-djangomain
flake8

Expand All @@ -15,6 +16,7 @@ commands = pytest --cov=storages tests/ {posargs}
deps =
django3.2: django~=3.2.9
django4.1: django~=4.1.0
django4.2: django~=4.2.0
djangomain: https://github.com/django/django/archive/main.tar.gz
cryptography
pytest
Expand Down