Skip to content

Commit

Permalink
Fixed constraint for MarkupSafe in ansible-constraints.txt
Browse files Browse the repository at this point in the history
Details:

* Fixed constraint for MarkupSafe in ansible-constraints.txt which caused
  install failure on Python 3.7.

Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Jan 15, 2024
1 parent 1715640 commit 31eac85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible-constraints.txt
Expand Up @@ -29,8 +29,8 @@ Jinja2==3.0.0; python_version >= '3.8'

# MarkupSafe is used by Jinja2
# Jinja2 3.0 requires MarkupSafe>=2.0
MarkupSafe>=1.1.0; python_version <= '3.7'
MarkupSafe>=2.0.0; python_version >= '3.8'
MarkupSafe==1.1.0; python_version <= '3.7'
MarkupSafe==2.0.0; python_version >= '3.8'


# Direct dependencies for development (must be consistent with dev-requirements.txt)
Expand Down

0 comments on commit 31eac85

Please sign in to comment.