Skip to content

Commit

Permalink
Merge pull request #122 from openedx/usamasadiq/add-django-40-support
Browse files Browse the repository at this point in the history
build: add django 40 support
  • Loading branch information
UsamaSadiq authored Apr 19, 2022
2 parents 8dcf66e + ed8f376 commit 86d0284
Show file tree
Hide file tree
Showing 3 changed files with 5 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 @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django32]
toxenv: [django32, django40]
steps:
- uses: actions/checkout@v1
- name: setup python
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def is_requirement(line):

setup(
name="django-wiki",
version="1.0.3",
version="1.1.0",
author="Benjamin Bach",
author_email="[email protected]",
description="A wiki system written for the Django framework.",
Expand All @@ -80,6 +80,7 @@ def is_requirement(line):
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tox]
envlist = py38-django{32}
envlist = py38-django{32,40}

[testenv]
deps =
django32: -r requirements/django.txt
django40: django>4.0,<4.1
-r{toxinidir}/requirements/test.txt
changedir={toxinidir}/testproject/
commands =
Expand Down

0 comments on commit 86d0284

Please sign in to comment.