Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mondeja/mkdocs-include-markdown-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.2.1
Choose a base ref
...
head repository: mondeja/mkdocs-include-markdown-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.2.2
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Jul 1, 2024

  1. Update GitHub Action Versions (#224)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    mondeja and github-actions[bot] authored Jul 1, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4406e8a View commit details

Commits on Aug 10, 2024

  1. Add official support for Python 3.13 (#227)

    mondeja authored Aug 10, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c1db293 View commit details
Showing with 15 additions and 13 deletions.
  1. +1 −0 .github/workflows/ci.yml
  2. +2 −2 .github/workflows/pre-commit-autoupdate.yml
  3. +3 −3 .pre-commit-config.yaml
  4. +9 −8 pyproject.toml
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -36,6 +36,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- 3.13.0-rc.1
platform:
- ubuntu-latest
- macos-latest
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
@@ -17,13 +17,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit autoupdate
run: pre-commit autoupdate
- name: Open pull request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6.1.0
with:
branch: pre-commit-autoupdate
title: Upgrade pre-commit hooks revisions
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ repos:
- id: end-of-file-fixer
name: end-of-file-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.10
rev: v0.5.7
hooks:
- id: ruff
args:
@@ -79,7 +79,7 @@ repos:
name: editorconfig-checker
alias: ec
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
rev: v1.11.1
hooks:
- id: mypy
name: mypy-mkdocs-1.5.0
@@ -89,7 +89,7 @@ repos:
- platformdirs
- wcmatch
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
rev: v1.11.1
hooks:
- id: mypy
name: mypy-mkdocs-1.6.0
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mkdocs-include-markdown-plugin"
version = "6.2.1"
version = "6.2.2"
description = "Mkdocs Markdown includer plugin."
readme = "README.md"
license = "Apache-2.0"
@@ -19,12 +19,13 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["markdown", "mkdocs", "includer", "plugin"]
dependencies = [
"mkdocs>=1.4",
"wcmatch>=8,<9"
"wcmatch"
]

[[project.authors]]
@@ -73,7 +74,7 @@ matrix-name-format = "{variable}-{value}"
dependencies = ["pytest~=7.0", "coverage~=6.4", "covdefaults"]

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

@@ -104,9 +105,9 @@ targets = [{ file = "pyproject.toml" }]
[tool.project-config]
cache = "2 days"
style = [
"gh://mondeja/project-config-styles@v5.2.1/base/pre-commit/md2po2md.json5",
"gh://mondeja/project-config-styles@v5.2.1/python/base.json5",
"gh://mondeja/project-config-styles@v5.2.1/python/mypy.json5",
"gh://mondeja/project-config-styles@v5.3/base/pre-commit/md2po2md.json5",
"gh://mondeja/project-config-styles@v5.3/python/base.json5",
"gh://mondeja/project-config-styles@v5.3/python/mypy.json5",
]

[tool.coverage.run]
@@ -203,7 +204,7 @@ extra-standard-library = [

[tool.mypy]
strict = true
python_version = "3.11"
python_version = "3.12"
allow_untyped_calls = true
allow_any_generics = true