Skip to content

Commit

Permalink
Add support for Python 3.11 (#382)
Browse files Browse the repository at this point in the history
* Add support for Python 3.11

* Do not run py 3.11 with Plone 5.2
  • Loading branch information
tisto authored Dec 14, 2024
1 parent 939e117 commit fa8eec9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.9", "3.8"]
python-version: ["3.11", "3.10", "3.9", "3.8"]
plone-version: ["5.2", "6.0"]
solr-version: ["9.0.x", "9.1.x"]
exclude:
- python-version: "3.11"
plone-version: "5.2"
- python-version: "3.10"
plone-version: "5.2"
- python-version: "3.9"
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
9.3.1 (unreleased)
------------------

- Add support for Python 3.11 [tisto]

- Add support for Plone 6.1 [pbauer]

- Drop support for Solr 7 and Solr 8. Solr 8 reached its end-of-live in October 2024 (https://solr.apache.org/news.html#solr-8-reaches-end-of-life)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="plone cmf zope indexing searching solr lucene",
author="Plone Community",
Expand Down

0 comments on commit fa8eec9

Please sign in to comment.