Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Added support for Django 4.2 #214

Merged
merged 9 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8']
toxenv: [quality, django32, django40]
toxenv: [quality, django32, django42]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def get_version(*file_paths):
url='https://github.com/openedx/xblock-utils',
classifiers=[
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[tox]
envlist = py38-django{32,40}, quality
envlist = py38-django{32, 42}, quality

[testenv]
passenv =
CI DISPLAY
deps =
-r requirements/test.txt
commands =
django32: pip install Django>=3.2,<3.3
django40: pip install Django>=4.0,<4.1
django32: pip install Django>=3.2,<4.0
django40: pip install Django>=4.2,<4.3
python -Wd -m pytest {posargs}

[testenv:quality]
Expand Down
2 changes: 1 addition & 1 deletion xblockutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Useful classes and functionality for building and testing XBlocks
"""

__version__ = '3.2.0'
__version__ = '3.3.0'