Skip to content

Commit

Permalink
Closes #103, Make python 3.7+ and django 2.2+ the minimal reqs.
Browse files Browse the repository at this point in the history
As discussed in #103, Python>=3.7 and Django>=2.2 are the minimum
requirements, thus we update setup.py, tox.ini and docs.
  • Loading branch information
telenieko committed Jun 4, 2019
1 parent d39ac4c commit 03ade52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
Expand All @@ -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',
],
)
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{35,37}-django{20,22}
py37-django22
coverage
docs

Expand All @@ -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]
Expand Down

0 comments on commit 03ade52

Please sign in to comment.