Skip to content

Commit

Permalink
feat: Added support for django3.2 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawayria authored Jul 12, 2021
1 parent 68909b1 commit bf40eea
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django22, quality, docs, pii_check]
toxenv: [django22, django30, django31, django32, quality, docs, pii_check]
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Unreleased
* Handle the case where certain toggle names come in as ``None`` when generating summary reports.
* Add ADR for updating annotations for toggle life expectancy and use cases.

[4.2.0] - 2021-07-07
~~~~~~~~~~~~~~~~~~~~

* Added support for django3.0, 3.1 and 3.2

[4.1.0] - 2021-02-10
~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion edx_toggles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Library and utilities for feature toggles.
"""

__version__ = '4.1.0'
__version__ = '4.2.0'

default_app_config = 'edx_toggles.apps.TogglesConfig' # pylint: disable=invalid-name
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ def is_requirement(line):
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38-django{22,30,31}
envlist = py38-django{22,30,31,32}

[doc8]
; D001 = Line too long
Expand Down Expand Up @@ -39,6 +39,7 @@ deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
-r{toxinidir}/requirements/test.txt
commands =
py.test {posargs}
Expand Down

0 comments on commit bf40eea

Please sign in to comment.