Skip to content

Commit

Permalink
Merge pull request #132 from openedx/zshkoor/django42
Browse files Browse the repository at this point in the history
fix: Added support for Django 42
  • Loading branch information
zubairshakoorarbisoft authored Aug 2, 2023
2 parents 7157731 + 7c9b62b commit 40e92d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [quality, django32, django40]
toxenv: [quality, django32, django42]
steps:
- uses: actions/checkout@v2

Expand All @@ -34,7 +34,7 @@ jobs:
run: tox -e ${{ matrix.toxenv }}

- name: Upload coverage to CodeCov
if: matrix.python-version == '3.8' && matrix.toxenv == 'django32'
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42'
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
Expand Down
2 changes: 1 addition & 1 deletion i18n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from . import config

__version__ = '1.0.0'
__version__ = '1.1.0'


class Runner:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ testpaths = tests
[testenv]
deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django42: Django>=4.2,<4.3
-r requirements/test.txt
commands = pytest {posargs}

Expand Down

0 comments on commit 40e92d8

Please sign in to comment.