Skip to content

Commit

Permalink
Add support for django CMS 3.8 / Django 3.1 (nephila#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky authored Nov 1, 2020
1 parent 03a8111 commit 5d01a86
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,22 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.7, 3.6, 3.5]
django: [30, 22]
cms: [37]
django: [31, 30, 22]
cms: [38, 37]
exclude:
- python-version: 3.5
django: 30
- python-version: 3.5
django: 31
- django: 31
cms: 37
include:
- python-version: 3.8
django: 22
cms: no-search-37
- python-version: 3.8
django: 31
cms: no-search-38
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ django CMS blog application - Support for multilingual posts, placeholders, soci

Supported Django versions:

* Django 2.2, 3.0
* Django 2.2, 3.0, 3.1

Supported django CMS versions:

* django CMS 3.7+
* django CMS 3.7, 3.8+

.. warning:: For Django<2.2, django CMS<3.7 versions support, use djangocms-blog 1.1x.

Expand Down
1 change: 1 addition & 0 deletions changes/643.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for django CMS 3.8 / Django 3.1
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ classifiers =
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Expand Down
13 changes: 11 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ envlist =
pep8
pypi-description
towncrier
py{38,37,36}-django{30}-cms{37,no-search-37}
py{38,37,36,35}-django{22}-cms{37,no-search-37}
py{38,37,36}-django{31}-cms{38,no-search-38}
py{38,37,36}-django{30}-cms{38,37,no-search-37}
py{38,37,36,35}-django{22}-cms{38,37,no-search-37}

[testenv]
commands = {env:COMMAND:python} cms_helper.py djangocms_blog test {posargs}
Expand All @@ -24,9 +25,17 @@ deps =
django30: django-filer>=1.6
django30: django-appdata>=0.3.0
django30: django-haystack==3.0b2
django31: Django>=3.1,<3.2
django31: django-mptt>=0.9
django31: django-filer>=2.0
django31: django-appdata>=0.3.2
django31: django-haystack==3.0b2
cms37: https://github.com/divio/django-cms/archive/release/3.7.x.zip
cms37: aldryn-search
cms-no-search-37: https://github.com/divio/django-cms/archive/release/3.7.x.zip
cms38: https://github.com/divio/django-cms/archive/release/3.8.x.zip
cms38: aldryn-search
cms-no-search-38: https://github.com/divio/django-cms/archive/release/3.8.x.zip
channels>2,<3
https://github.com/nephila/django-knocker/archive/master.zip
channels-redis
Expand Down

0 comments on commit 5d01a86

Please sign in to comment.