Skip to content

Commit

Permalink
Add Django 3.1 / django CMS 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Nov 1, 2020
1 parent 82c0b5a commit 2d051c3
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 25 deletions.
1 change: 1 addition & 0 deletions .checkignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tests/*
docs/*
djangocms_page_meta/migrations/*
1 change: 1 addition & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ languages:
PHP: false
Python: true
exclude_paths:
- 'djangocms_page_meta/migrations/*'
- 'tests/*'
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Provide any github issue fixed (as in ``Fix #XYZ``)

# Checklist

* [ ] I have read the [contribution guide](https://djangocms-blog.readthedocs.io/en/latest/contributing.html)
* [ ] I have read the [contribution guide](https://djangocms-page-meta.readthedocs.io/en/latest/contributing.html)
* [ ] Code lint checked via `inv lint`
* [ ] ``changes`` file included (see [docs](https://djangocms-blog.readthedocs.io/en/latest/contributing.html#pull-request-guidelines))
* [ ] ``changes`` file included (see [docs](https://djangocms-page-meta.readthedocs.io/en/latest/contributing.html#pull-request-guidelines))
* [ ] Usage documentation added in case of new features
* [ ] Tests added
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.7, 3.6]
django: [30, 22]
cms: [37]
django: [31, 30, 22]
cms: [38, 37]
exclude:
- python-version: 3.5
django: 30
- django: 31
cms: 37
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
32 changes: 16 additions & 16 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
djangocms-page-meta
===================

|Gitter| |PyPiVersion| |PyVersion| |Status| |TestCoverage| |CodeClimate| |License|
|Gitter| |PyPiVersion| |PyVersion| |GAStatus| |TestCoverage| |CodeClimate| |License|

Meta tag information for django CMS 3 pages

Python: 3.6, 3.7, 3.8

Django: 2.2, 3.0
Django: 2.2, 3.0, 3.1

django CMS: 3.7
django CMS: 3.7, 3.8


**********
Expand Down Expand Up @@ -76,26 +76,26 @@ For package documentation see https://djangocms-page-meta.readthedocs.io/.
:target: https://gitter.im/nephila/applications
:alt: Join the Gitter chat

.. |PyPiVersion| image:: https://img.shields.io/pypi/v/djangocms-page-meta.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-page-meta
.. |PyPiVersion| image:: https://img.shields.io/pypi/v/djangocms-redirect.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-redirect
:alt: Latest PyPI version

.. |PyVersion| image:: https://img.shields.io/pypi/pyversions/djangocms-page-meta.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-page-meta
.. |PyVersion| image:: https://img.shields.io/pypi/pyversions/djangocms-redirect.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-redirect
:alt: Python versions

.. |Status| image:: https://img.shields.io/travis/nephila/djangocms-page-meta.svg?style=flat-square
:target: https://travis-ci.org/nephila/djangocms-page-meta
:alt: Latest Travis CI build status
.. |GAStatus| image:: https://github.com/nephila/djangocms-redirect/workflows/Tox%20tests/badge.svg
:target: https://github.com/nephila/djangocms-redirect
:alt: Latest CI build status

.. |TestCoverage| image:: https://img.shields.io/coveralls/nephila/djangocms-page-meta/master.svg?style=flat-square
:target: https://coveralls.io/r/nephila/djangocms-page-meta?branch=master
.. |TestCoverage| image:: https://img.shields.io/coveralls/nephila/djangocms-redirect/master.svg?style=flat-square
:target: https://coveralls.io/r/nephila/djangocms-redirect?branch=master
:alt: Test coverage

.. |License| image:: https://img.shields.io/github/license/nephila/djangocms-page-meta.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-page-meta/
.. |License| image:: https://img.shields.io/github/license/nephila/djangocms-redirect.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-redirect/
:alt: License

.. |CodeClimate| image:: https://codeclimate.com/github/nephila/djangocms-page-meta/badges/gpa.svg?style=flat-square
:target: https://codeclimate.com/github/nephila/djangocms-page-meta
.. |CodeClimate| image:: https://codeclimate.com/github/nephila/djangocms-redirect/badges/gpa.svg?style=flat-square
:target: https://codeclimate.com/github/nephila/djangocms-redirect
:alt: Code Climate
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# djangocms-blog documentation build configuration file, created by
# djangocms-page-meta documentation build configuration file, created by
# sphinx-quickstart on Sun Jun 5 23:27:04 2016.
#
# This file is execfile()d with the current directory set to its
Expand Down
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@ envlist =
pep8
pypi-description
towncrier
py{38,37,36}-django{30}-cms{37}
py{38,37,36}-django{22}-cms{37}
py{38,37,36}-django{31}-cms{38}
py{38,37,36}-django{30}-cms{38,37}
py{38,37,36}-django{22}-cms{38,37}

[testenv]
commands = {env:COMMAND:python} cms_helper.py djangocms_page_meta test {posargs}
deps =
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
cms37: 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
djangocms-page-tags
-r{toxinidir}/requirements-test.txt
passenv =
Expand Down

0 comments on commit 2d051c3

Please sign in to comment.