Skip to content

Commit

Permalink
feat: add Python 3.11 support for Django CMS (#7422)
Browse files Browse the repository at this point in the history
* fix: test python3.11

Authored-by: Vinit Kumar <vinit.kumar@kidskonnect.nl>
Signed-off-by: Vinit Kumar <vinit.kumar@kidskonnect.nl>
  • Loading branch information
vinitkumar committed Oct 30, 2022
1 parent 2788f75 commit 3fe1449
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.8"
python-version: "3.10"
cache: 'pip'
- name: Cache dependencies
uses: actions/cache@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10']
python-version: [ '3.8', '3.9', '3.10', '3.11']
requirements-file: [
django-2.2.txt,
django-3.1.txt,
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10']
python-version: [ '3.8', '3.9', '3.10', '3.11']
requirements-file: [
django-2.2.txt,
django-3.1.txt,
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10']
python-version: [ '3.8', '3.9', '3.10', '3.11']
requirements-file: [
django-2.2.txt,
django-3.1.txt,
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Changelog
unreleased
==========

* Support for Python 3.11
* Support for django 4.1
* Allow to partially override ``CMS_CACHE_DURATIONS``
* Add support for tel: and mailto: URIs in Advanced Page Settings redirect field.
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
Expand Down
2 changes: 1 addition & 1 deletion test_requirements/databases.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
psycopg2==2.8.6
psycopg2==2.9.5
mysqlclient==2.0.3

0 comments on commit 3fe1449

Please sign in to comment.