Skip to content

Commit

Permalink
fix: Added support for django 42 (#298)
Browse files Browse the repository at this point in the history
* fix: Added support for django 42

* chore: Update CHANGELOG.rst

---------

Co-authored-by: Awais Qureshi <[email protected]>
  • Loading branch information
zubairshakoorarbisoft and awais786 authored Aug 2, 2023
1 parent 533f054 commit bd70373
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .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: [quality, docs, pii_check, django32, django40]
toxenv: [quality, docs, pii_check, django32, django42]
steps:
- uses: actions/checkout@v3
- name: setup python
Expand All @@ -34,7 +34,7 @@ jobs:
run: tox

- name: Run Coverage
if: matrix.python-version == '3.8' && matrix.toxenv=='django32'
if: matrix.python-version == '3.8' && matrix.toxenv=='django42'
uses: codecov/codecov-action@v1
with:
flags: unittests
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@ Change Log
Unreleased
~~~~~~~~~~

[5.1.0] - 2023-08-02
--------------------

* Added support for Django 4.2
* Rename toggle_warnings to toggle_warning for consistency with setting_warning.
* Switch from ``edx-sphinx-theme`` to ``sphinx-book-theme`` since the former is
deprecated


[5.0.0] - 2022-04-22
--------------------

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

__version__ = '5.0.0'

default_app_config = 'edx_toggles.apps.TogglesConfig' # pylint: disable=invalid-name
__version__ = '5.1.0'
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ norecursedirs = .* docs requirements
[testenv]
deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django42: Django>=4.2,<4.3
-r{toxinidir}/requirements/test.txt
commands =
py.test {posargs}
Expand Down

0 comments on commit bd70373

Please sign in to comment.