Skip to content

Commit c49fa9c

Browse files
committed
Bump supported versions
1 parent 33a8093 commit c49fa9c

File tree

5 files changed

+1925
-799
lines changed

5 files changed

+1925
-799
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repos:
3939
entry: end-of-file-fixer
4040
language: system
4141
types: [text]
42-
stages: [commit, push, manual]
42+
stages: [pre-commit, pre-push, manual]
4343
- id: flake8
4444
name: flake8
4545
entry: flake8
@@ -66,7 +66,7 @@ repos:
6666
entry: trailing-whitespace-fixer
6767
language: system
6868
types: [text]
69-
stages: [commit, push, manual]
69+
stages: [pre-commit, pre-push, manual]
7070
- repo: https://github.com/pre-commit/mirrors-prettier
7171
rev: v2.6.0
7272
hooks:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If you only occasionally need to send binary data then base64 encoding is probab
4141
## Requirements
4242

4343
- Python 3.9+
44-
- Django 3.2+
44+
- Django 4.2+
4545
- Django REST Framework 3.14+
4646

4747
## Installation

noxfile.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,17 @@
2626

2727
DJANGO_STABLE_VERSION = "4.2"
2828
DJANGO_VERSIONS = [
29-
"3.2",
3029
"4.1",
3130
"4.2",
32-
"5.0b1",
31+
"5.0",
32+
"5.1",
33+
"5.2b0",
3334
]
3435

3536
# PYTHON_STABLE_VERSION should be set to the latest stable Python version
3637

37-
PYTHON_STABLE_VERSION = "3.11"
38-
PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
38+
PYTHON_STABLE_VERSION = "3.13"
39+
PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3940

4041

4142
package = "drf_base64_binaryfield"

0 commit comments

Comments
 (0)