Skip to content

Commit

Permalink
Update markdown package re-enable support for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandakumar Chandrasekhar committed Jul 7, 2024
1 parent b1ef93c commit ca4b6e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ classifiers = [
"Issue Tracker" = "https://github.com/pelican-plugins/pandoc-reader/issues"

[tool.poetry.dependencies]
python = ">=3.9.0,<4.0"
python = ">=3.8.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"
Expand All @@ -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"
Expand Down

0 comments on commit ca4b6e9

Please sign in to comment.