python3.14 -m pip install mkdocs-material[imaging] fails

* https://www.python.org/download/pre-releases
* https://www.python.org/downloads/release/python-3140rc2
This commit is contained in:
Christian Clauss 2025-09-05 17:14:57 +02:00
parent c9d5303c0d
commit e699c83f70
2 changed files with 4 additions and 3 deletions

View File

@ -30,7 +30,7 @@ on:
env: env:
NODE_VERSION: 18.x NODE_VERSION: 18.x
PYTHON_VERSION: 3.x PYTHON_VERSION: 3.14
permissions: permissions:
contents: read contents: read
@ -101,6 +101,7 @@ jobs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
allow-prereleases: true
cache: pip cache: pip
cache-dependency-path: | cache-dependency-path: |
pyproject.toml pyproject.toml

View File

@ -39,7 +39,7 @@ dynamic = [
"keywords" "keywords"
] ]
readme = "README.md" readme = "README.md"
requires-python = ">=3.8" requires-python = ">=3.9"
classifiers = [ classifiers = [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Environment :: Web Environment", "Environment :: Web Environment",
@ -63,7 +63,7 @@ git = [
"mkdocs-git-revision-date-localized-plugin~=1.2,>=1.2.4" "mkdocs-git-revision-date-localized-plugin~=1.2,>=1.2.4"
] ]
imaging = [ imaging = [
"pillow>=10.2,<12.0", "pillow>=11.3,<12.0",
"cairosvg~=2.6" "cairosvg~=2.6"
] ]