Skip to content

Commit

Permalink
feat: Added support for django3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawayria authored Jul 28, 2021
2 parents 07776be + 4f380a0 commit 6a3100e
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 @@ -4,6 +4,9 @@ python:
- '3.8'
envs:
- TOXENV=django22
- TOXENV=django30
- TOXENV=django31
- TOXENV=django32
- TOXENV=quality

services:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def is_requirement(line):

setup(
name='edx-search',
version='3.0.0',
version='3.1.0',
description='Search and index routines for index access',
author='edX',
author_email='[email protected]',
Expand All @@ -47,6 +47,9 @@ def is_requirement(line):
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
],
packages=['search', 'search.tests'],
install_requires=load_requirements('requirements/base.in')
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]
setenv =
Expand All @@ -9,6 +9,7 @@ deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<4.0
-r {toxinidir}/requirements/testing.txt
commands =
python -Wd -m coverage run manage.py test --settings=settings {posargs}
Expand Down

0 comments on commit 6a3100e

Please sign in to comment.