diff --git a/README.md b/README.md index 55acc5e..cd47e36 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ dj_anonymizer [![Build Status](https://github.com/preply/dj_anonymizer/actions/w dj_anonymizer helps anonymize production database with any kind of fake data. -Project works with Django 3.2 or higher and Python 3.8 or higher. +Project works with Django 4.2 or higher and Python 3.8 or higher. Documentation ================================== diff --git a/requirements.txt b/requirements.txt index 0851254..d626223 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Django>=3.2,<=3.3 +Django>=4.2,<=4.3 django-appconf flake8==7.0.0 isort==5.13.2 diff --git a/setup.py b/setup.py index a375266..73b76f9 100644 --- a/setup.py +++ b/setup.py @@ -37,12 +37,11 @@ def read(*rnames): 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Framework :: Django', - 'Framework :: Django :: 3.2', 'Framework :: Django :: 4.2', 'Framework :: Django :: 5.0', 'Topic :: Database' ], install_requires=[ - 'Django>=3.2', + 'Django>=4.2', ] )