Skip to content

Commit 938f251

Browse files
committed
docs(README): Update django and python compatible versions
1 parent 872ea3e commit 938f251

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

README.rst

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ django-nested-admin
55

66
**django-nested-admin** is a project that makes it possible to nest
77
admin inlines (that is, to define inlines on InlineModelAdmin classes).
8-
It is compatible with Django 2.2+ and Python 3.5+ and works with or
8+
It is compatible with Django 3.2+ and Python 3.7+ and works with or
99
without Grappelli. When Grappelli is not installed it allows
1010
Grappelli-like drag-and-drop functionality.
1111

@@ -44,18 +44,11 @@ you will also need to add to include ``nested_admin.urls`` in your urlpatterns:
4444

4545
.. code-block:: python
4646
47-
# Django 2+
4847
urlpatterns = [
4948
# ...
5049
path('_nested_admin/', include('nested_admin.urls')),
5150
]
5251
53-
# Django < 2
54-
urlpatterns = [
55-
# ...
56-
url(r'^_nested_admin/', include('nested_admin.urls')),
57-
]
58-
5952
Example Usage
6053
=============
6154

0 commit comments

Comments
 (0)