Skip to content

Commit 9861826

Browse files
author
Umar Asghar
committed
add django 3.2 support
1 parent be2e781 commit 9861826

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ master (unreleased)
66
- Dropped support for Python 2.7 and 3.5
77
- Added support for Python 3.9
88
- Dropped support for Django versions 2.1 and below
9+
- Dropped support for Django 3.0
910
- Added suppport for Django 3.1
11+
- Added suppport for Django 3.2
1012

1113
4.0 (2020-01-04)
1214
-----------------

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ directory or on ReadTheDocs: https://django-robots.readthedocs.io/
2222

2323
Supported Django versions
2424
-------------------------
25-
25+
* Django 3.2
2626
* Django 3.1
27-
* Django 3.0
2827
* Django 2.2
2928

3029
For older Django versions (1.6-1.10) use ``django-robots==3.0``.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def read(*parts):
4444
'Programming Language :: Python :: 3.8',
4545
'Framework :: Django',
4646
'Framework :: Django :: 2.2',
47-
'Framework :: Django :: 3.0',
4847
'Framework :: Django :: 3.1',
48+
'Framework :: Django :: 3.2',
4949
]
5050
)
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 3.2 on 2021-09-23 12:14
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('robots', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='rule',
15+
name='id',
16+
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
17+
),
18+
migrations.AlterField(
19+
model_name='url',
20+
name='id',
21+
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
22+
),
23+
]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
envlist =
33
# list of supported Django/Python versions:
44
# https://docs.djangoproject.com/en/3.1/faq/install/#what-python-version-can-i-use-with-django
5-
py{36,37,38,39}-dj{22,30,31}
5+
py{36,37,38,39}-dj{22,31,32}
66
py{38,39}-djmain
77
py38-{lint,docs}
88

@@ -25,8 +25,8 @@ commands =
2525
deps =
2626
-r{toxinidir}/tests/requirements.txt
2727
dj22: django>=2.2,<2.3
28-
dj30: django>=3.0,<3.1
2928
dj31: django>=3.1,<3.2
29+
dj32: django>=3.2,<3.3
3030
djmain: https://github.com/django/django/archive/main.tar.gz
3131

3232
[testenv:py38-lint]

0 commit comments

Comments
 (0)