Skip to content

Commit

Permalink
feat: Added support for django3.2 (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawayria authored Jul 13, 2021
1 parent 58636e7 commit bc84b66
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django22, quality]
toxenv: [django22, django30, django31, django32, quality]
steps:
- uses: actions/checkout@v1
- name: setup python
Expand Down
2 changes: 1 addition & 1 deletion edx_rest_api_client/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.3.0'
__version__ = '5.4.0'
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ def is_requirement(line):
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Topic :: Internet',
'Intended Audience :: Developers',
'Environment :: Web Environment',
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

[pytest]
DJANGO_SETTINGS_MODULE = test_settings
Expand All @@ -11,6 +11,7 @@ deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
-r{toxinidir}/requirements/test.txt
commands =
pytest {posargs}
Expand Down

0 comments on commit bc84b66

Please sign in to comment.