Skip to content
Closed
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
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
fail-fast: false
matrix:
py:
- 3.9
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
platform:
- ubuntu-latest
- macos-latest
Expand All @@ -75,9 +75,6 @@ jobs:
file_handler.write(env)
- name: Install dependencies
run: pip install -U hatch
- name: Patch virtualenv on Python3.9
if: matrix.py == '3.9'
run: pip install --force-reinstall "virtualenv<21"
- name: Run tests
run: |
hatch run +py=${{ steps.env.outputs.py }} tests:all
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ git push origin "v$version"
## Compatibility

Latest version supporting Python3.7 and Mkdocs<1.4.0 is v4.0.4.
Latest version supporting Python3.9 is v7.2.2.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "7.2.2"
description = "Mkdocs Markdown includer plugin."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
Expand All @@ -15,11 +15,11 @@ classifiers = [
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup :: Markdown",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["markdown", "mkdocs", "includer", "plugin"]
dependencies = [
Expand Down Expand Up @@ -73,7 +73,7 @@ matrix-name-format = "{variable}-{value}"
dependencies = ["pytest~=7.0", "coverage~=6.4", "covdefaults"]

[[tool.hatch.envs.tests.matrix]]
python = ["py39", "py310", "py311", "py312", "py313"]
python = ["py310", "py311", "py312", "py313", "py314"]
mkdocs = ["1.4.0", "1.4.3", "1.5.0", "1.5.3", "1.6.0"]
cache = ["yes", "no"]

Expand Down Expand Up @@ -121,7 +121,7 @@ fail_under = 1

[tool.ruff]
line-length = 80
target-version = "py39"
target-version = "py310"

[tool.ruff.lint]
select = [
Expand Down
Loading