Skip to content

Commit

Permalink
Merge pull request avocado-framework#6040 from richtja/MarkupSafe_fix
Browse files Browse the repository at this point in the history
MarkupSafe fix
  • Loading branch information
richtja authored Oct 10, 2024
2 parents 17201f1 + 2810b11 commit ae1b209
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/source/releases/108_0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ Users/Test Writers
`exec-runnables-recipe`. It allows a user to point to a file that
will be executed, and that is expected to generate (on its ``STDOUT``)
content compatible with the Runnable recipe format. More info
abotu this new featrue can be found in `documentaion
about this new featrue can be found in `documentaion
<https://avocado-framework.readthedocs.io/en/latest/guides/writer/chapters/recipes.html#using-dynamically-generated-recipes>`_

* Documentaion about avocado-instrumented test lifecycle has been `improved
* Documentation about avocado-instrumented test lifecycle has been `improved
<https://avocado-framework.readthedocs.io/en/latest/guides/reference/chapters/avocado_instrumented.html>`_

Utility Modules
Expand Down
1 change: 1 addition & 0 deletions optional_plugins/ansible/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cffi",
"pycparser",
"ansible-core",
"markupsafe<3.0.0",
],
test_suite="tests",
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion optional_plugins/html/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_long_description():
url="http://avocado-framework.github.io/",
packages=find_packages(),
include_package_data=True,
install_requires=[f"avocado-framework=={VERSION}", "jinja2"],
install_requires=[f"avocado-framework=={VERSION}", "jinja2", "markupsafe<3.0.0"],
entry_points={
"avocado.plugins.cli": [
"html = avocado_result_html:HTML",
Expand Down

0 comments on commit ae1b209

Please sign in to comment.