You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SPARK-38279][TESTS][3.2] Pin MarkupSafe to 2.0.1 fix linter failure
### What changes were proposed in this pull request?
This PR proposes to pin the Python package `markupsafe` to 2.0.1 to fix the CI failure as below.
```
ImportError: cannot import name 'soft_unicode' from 'markupsafe' (/home/runner/work/_temp/setup-sam-43osIE/.venv/lib/python3.10/site-packages/markupsafe/__init__.py)
```
Since `markupsafe==2.1.0` has removed `soft_unicode`, `from markupsafe import soft_unicode` no longer working properly.
See aws/aws-sam-cli#3661 for more detail.
### Why are the changes needed?
To fix the CI failure on branch-3.2
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
The existing tests are should be passed
Closes#35602 from itholic/SPARK-38279.
Authored-by: itholic <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
0 commit comments