From 3d40cfd8c635ff7a203a033aaef2ef6c6d14d012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Gr=C3=B8n=C3=A5s?= Date: Mon, 16 Oct 2023 17:11:47 +0200 Subject: [PATCH] Add Python v3.12 --- .github/workflows/CI.yml | 2 +- pyproject.toml | 6 ++++-- requirements.txt | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4fc47e0..2ae91af 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,7 +15,7 @@ jobs: max-parallel: 6 matrix: os: [ubuntu-latest] - python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 6a5db4b..03355dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mkdocs-callouts" -version = "1.9.1" +version = "1.9.2" keywords = ["mkdocs", "mkdocs-plugin", "markdown", "callouts", "admonitions", "obsidian"] description = "A simple plugin that converts Obsidian style callouts and converts them into mkdocs supported 'admonitions' (a.k.a. callouts)." readme = "README.md" @@ -22,12 +22,14 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Documentation", "Topic :: Software Development :: Documentation" ] dependencies = [ - "mkdocs>=1" + "mkdocs>=1", + "setuptools" ] [project.urls] diff --git a/requirements.txt b/requirements.txt index c7c32e3..06af37c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ mkdocs>=1 +setuptools pytest>=7.1.2 \ No newline at end of file