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

Commit

Permalink
feat: Added Support for Django 3.2 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
M. Zulqarnain authored Aug 4, 2021
1 parent b948174 commit c93881d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ python:
env:
- TOXENV=quality
- TOXENV=django22
- TOXENV=django30
- TOXENV=django31
- TOXENV=django32
services:
- xvfb
addons:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def is_requirement(line):


README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
VERSION = '2.1.3'
VERSION = '2.2.0'

if sys.argv[-1] == 'tag':
print("Tagging the version on github:")
Expand All @@ -88,6 +88,9 @@ def is_requirement(line):
url='https://github.com/edx/xblock-utils',
classifiers=[
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
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}, quality
envlist = py38-django{22,30,31,32}, quality

[testenv]
passenv =
Expand All @@ -10,6 +10,7 @@ commands =
django22: pip install Django>=2.2,<2.3
django30: pip install Django>=3.0,<3.1
django31: pip install Django>=3.1,<3.2
django32: pip install Django>=3.2,<3.3
python -Wd -m pytest {posargs}

[testenv:quality]
Expand Down

0 comments on commit c93881d

Please sign in to comment.