Skip to content

Commit eea6aaa

Browse files
author
M. Zulqarnain
authored
Merge pull request #71 from edx/django32-support
BOM-2707: Added Support for Django 3.2
2 parents dc98f7d + d657a03 commit eea6aaa

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env:
1010
- TOXENV=django22
1111
- TOXENV=django30
1212
- TOXENV=django31
13+
- TOXENV=django32
1314
cache:
1415
- pip
1516

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ Change Log
1414
Unreleased
1515
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1616

17+
[1.2.0] - 2021-07-26
18+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19+
20+
* Added Django 3.0, 3.1 & 3.2 Support
21+
1722
[1.1.2] - 2021-05-21
1823
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1924

code_annotations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Extensible tools for parsing annotations in codebases.
33
"""
44

5-
__version__ = '1.1.2'
5+
__version__ = '1.2.0'

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,14 @@ def is_requirement(line):
9797
'Development Status :: 3 - Alpha',
9898
'Framework :: Django',
9999
'Framework :: Django :: 2.2',
100+
'Framework :: Django :: 3.0',
101+
'Framework :: Django :: 3.1',
102+
'Framework :: Django :: 3.2',
100103
'Intended Audience :: Developers',
101104
'License :: OSI Approved :: Apache Software License',
102105
'Natural Language :: English',
103106
'Programming Language :: Python',
104107
'Programming Language :: Python :: 3',
105-
'Programming Language :: Python :: 3.5',
106108
'Programming Language :: Python :: 3.8',
107109
],
108110
)

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38-django{22,30,31}
2+
envlist = py38-django{22,30,31,32}
33

44
[doc8]
55
ignore = D001
@@ -20,6 +20,7 @@ deps =
2020
django22: Django>=2.2,<2.3
2121
django30: Django>=3.0,<3.1
2222
django31: Django>=3.1,<3.2
23+
django32: Django>=3.2,<3.3
2324
-r{toxinidir}/requirements/test.txt
2425
commands =
2526
python -Wd -m pytest {posargs}

0 commit comments

Comments
 (0)