Skip to content

Commit

Permalink
chore: Post Django32 Cleanup (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
aht007 committed Jan 28, 2022
1 parent fdf4cd2 commit 1c6718a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 25 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-20.04
python-version:
- 3.8
node-version:
- 10
os: ['ubuntu-20.04']
python-version: ['3.8']
node-version: ['10']
toxenv:
- django30-drflatest
- django31-drflatest
- django32-drflatest
- quality
- pii_check
- version_check
- translations
- js_tests
- js_lint
- rst_validation
['django32-drflatest', 'django40-drflatest', 'quality', 'pii_check', 'version_check', 'translations', 'js_tests', 'js_lint', 'rst_validation']
steps:
- uses: actions/checkout@v1
- name: Setup python
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Change Log
Unreleased
~~~~~~~~~~

[4.9.0] - 2022-01-25
~~~~~~~~~~~~~~~~~~~~
* Dropped Django22, 30 and 31
* Added Support for Django40

[4.8.4] - 2022-01-12
~~~~~~~~~~~~~~~~~~~~
* Return better http status when review callback resulted in the original
Expand Down
2 changes: 1 addition & 1 deletion edx_proctoring/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""

# Be sure to update the version number in edx_proctoring/package.json
__version__ = '4.8.4'
__version__ = '4.9.0'

default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edx/edx-proctoring",
"//": "Note that the version format is slightly different than that of the Python version when using prereleases.",
"version": "4.8.4",
"version": "4.9.0",
"main": "edx_proctoring/static/index.js",
"scripts": {
"test": "gulp test"
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,8 @@ def is_requirement(line):
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tox]
envlist =
py38-celery{50}-django{30,31,32}-drflatest
py38-celery{50}-django{32, 40}-drflatest
quality,
version_check,
pii_check,
translations

[testenv]
deps =
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
drflatest: djangorestframework
celery50: -r{toxinidir}/requirements/celery50.txt
-rrequirements/test.txt
Expand Down Expand Up @@ -56,7 +56,7 @@ deps =
commands =
pylint edx_proctoring
pycodestyle edx_proctoring
isort --check-only --recursive --diff edx_proctoring manage.py setup.py
isort --check-only --diff edx_proctoring manage.py setup.py

[testenv:version_check]
deps =
Expand Down

0 comments on commit 1c6718a

Please sign in to comment.