From 20e07d7e5e2210615cfcabf6826a4fe17e68467c Mon Sep 17 00:00:00 2001 From: Nandakumar Chandrasekhar Date: Sun, 7 Jul 2024 20:37:15 +0530 Subject: [PATCH] Update markdown package re-enable support for 3.8 --- .github/workflows/main.yml | 2 +- README.md | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3644d12..91aa405 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 4cb5ecb..141d628 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Requirements This plugin requires: -* Python 3.9 or higher; and +* Python 3.8 or higher; and * Pandoc 2.11 or higher [[Pandoc installation instructions](https://pandoc.org/installing.html)]. By default, the plugin looks for a `pandoc` executable on your `PATH`. If you wish, [you may specify an alternative location for your `pandoc` executable](#customizing-the-path-for-the-pandoc-executable). diff --git a/pyproject.toml b/pyproject.toml index 99ba77e..9c8d474 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.9.0,<4.0" pelican = ">=4.5" -markdown = {version = "<=3.3.4", optional = true} +markdown = ">=3.6" pyyaml = "^6.0.0" beautifulsoup4 = "^4.9.3" "ruamel.yaml" = "^0.17.32" @@ -43,7 +43,7 @@ flake8-black = "^0.2.0" invoke = "^2.0" isort = "^5.12.0" livereload = "^2.6" -markdown = "<=3.3.4" +markdown = ">=3.6" pytest = "^6.0" pytest-cov = "^2.8" pytest-pythonpath = "^0.7.3"