Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Django < 4.2, python < 3.10 and django CMS < 3.11 #122

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,10 @@ jobs:
continue-on-error: ${{ matrix.continue-on-error }}
strategy:
matrix:
python-version: ["3.11", "3.10", "3.9"]
django: [42, 41, 32]
cms: [311, 39]
python-version: ["3.11", "3.10"]
django: [42]
cms: [311]
continue-on-error: [true]
exclude:
- django: 41
cms: 39
- django: 42
cms: 39
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,22 @@ django CMS page extension to handle sitemap customization

Support Python version:

* Python 3.9, 3.10, 3.11
* Python 3.10, 3.11

Supported Django versions:

* Django 3.2, 4.1, 4.2
* Django 4.2

Supported django CMS versions:

* django CMS 3.9, 3.11
* django CMS 3.11

.. note:: djangocms-page-sitemap 0.8 has been relicensed with BSD license.

.. note:: djangocms-page-sitemap 1.0 dropped compatibility with Python 2 and Django < 2.2

.. note:: djangocms-page-sitemap 1.4 dropped compatibility with Python 3.9, Django < 4.2 and django CMS < 3.11

********
Features
********
Expand Down
1 change: 1 addition & 0 deletions changes/121.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Django < 4.2, python < 3.10 and django CMS < 3.11
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,19 @@ classifiers =
License :: OSI Approved :: BSD License
Natural Language :: English
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
include_package_data = True
install_requires =
django-cms>=3.7
django-cms>=3.11
setup_requires =
setuptools
packages = djangocms_page_sitemap
python_requires = >=3.7
python_requires = >=3.10
zip_safe = False
test_suite = cms_helper.run

Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ envlist =
ruff
pypi-description
towncrier
py{311,310,39}-django{42,41}-cms{311}
py{311,310,39}-django{32}-cms{311,39}
py{311,310}-django{42}-cms{311}

[testenv]
commands = {env:COMMAND:python} cms_helper.py djangocms_page_sitemap test {posargs}
deps =
django32: Django~=3.2.0
django41: Django~=4.1.0
django42: Django~=4.2.0
cms39: https://github.com/django-cms/django-cms/archive/release/3.9.x.zip
cms311: https://github.com/yakky/django-cms/archive/release/3.11.x.zip
-r{toxinidir}/requirements-test.txt
passenv =
Expand Down
Loading