diff --git a/docs/installation.rst b/docs/installation.rst index b47dce42..7817f36b 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -39,8 +39,8 @@ Requirements The django-cruds-adminlte works thanks to: -* Python 2.7+ -* Django >=1.8 +* Python 3.7+ +* Django >=2.2 * django-crispy-forms * django-image-cropping and easy-thumbnails (optional if you want to crop) * djangoajax (for the inlines stuff) diff --git a/setup.py b/setup.py index 3a2d4851..582fc700 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ ], include_package_data=True, install_requires=[ - 'django>=2.0', + 'django>=2.2', 'django-crispy-forms==1.7.2', 'djangoajax==2.3.7', ], @@ -48,6 +48,6 @@ 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.7', ], ) diff --git a/tox.ini b/tox.ini index 45ddbb71..fc71c1e6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{35,37}-django{20,22} + py37-django22 coverage docs @@ -11,7 +11,6 @@ commands = coverage erase commands = coverage run --parallel-mode --source cruds_adminlte setup.py test deps = -rrequirements-test.txt - django20: Django>=2.0,<2.1 django22: Django>=2.2,<2.3 [testenv:coverage]