Skip to content

Commit 77e788b

Browse files
authored
Downgrade mistune (#21)
* Downgrade mistune
1 parent 9eca3e6 commit 77e788b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/python-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
python -m pip install poetry tox
27+
python -m pip install poetry tox poetry-plugin-export
2828
make poetry-export
2929
- name: Check code style with black
3030
run: |

.github/workflows/python-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
python -m pip install poetry tox
27+
python -m pip install poetry tox poetry-plugin-export
2828
make poetry-export
2929
- name: Lint with ruff
3030
run: make lint

.github/workflows/python-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
python -m pip install poetry
27+
python -m pip install poetry poetry-plugin-export
2828
poetry config virtualenvs.create false
2929
poetry install --no-root --with dev
3030
- name: Test & publish code coverage

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip
34-
python -m pip install poetry
34+
python -m pip install poetry poetry-plugin-export
3535
poetry config virtualenvs.create false
3636
poetry install --no-root --with dev
3737
- name: Test with pytest

.github/workflows/python-typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
python -m pip install poetry tox
27+
python -m pip install poetry tox poetry-plugin-export
2828
make poetry-export
2929
- name: Check typing
3030
run: make typing

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
python -m pip install poetry poetry-dynamic-versioning
28+
python -m pip install poetry poetry-dynamic-versioning poetry-plugin-export
2929
3030
- name: Build package
3131
run: |

.github/workflows/reusable-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install dependencies
5050
run: |
5151
python -m pip install --upgrade pip
52-
python -m pip install poetry
52+
python -m pip install poetry poetry-plugin-export
5353
poetry config virtualenvs.create false
5454
poetry install --with dev
5555

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ requires = ["poetry-core", "poetry-dynamic-versioning"]
4848
build-backend = "poetry_dynamic_versioning.backend"
4949

5050
[tool.poetry.dependencies]
51-
mistune = "^3.0.2"
51+
mistune = ">=3.0.2, <3.1"
5252
mkdocs = "^1.4.3"
5353
mkdocs-macros-plugin = "^1.0.5"
5454
python = ">=3.9,<3.14"

0 commit comments

Comments
 (0)