Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MarkupSafe fix #6040

Merged
merged 2 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading