Skip to content

Commit

Permalink
feat: Adding python3.12 support. Removed django32 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Mar 25, 2024
1 parent 652a94f commit dff6047
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django32, django40, django42, quality]
python-version: ['3.8', '3.12']
toxenv: [django42, quality]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion organizations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
edx-organizations app initialization module
"""
__version__ = '6.12.1' # pragma: no cover
__version__ = '6.13.0' # pragma: no cover
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
[tox]
envlist = py38-django{32,40,42}, quality
envlist = py{38,312}-django{42}, quality

[testenv]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
deps =
django42: Django>=4.2,<4.3
-rtest-requirements.txt
commands =
Expand All @@ -18,7 +16,7 @@ commands =
setenv =
PYTHONPATH = {toxinidir}
deps =
Django>=3.2,<4.0
Django>=4.2,<4.3
-rtest-requirements.txt
commands =
pycodestyle organizations
Expand Down

0 comments on commit dff6047

Please sign in to comment.