Skip to content

Commit

Permalink
[SPARK-38279][TESTS][3.2] Pin MarkupSafe to 2.0.1 fix linter failure
Browse files Browse the repository at this point in the history
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.

To fix the CI failure on branch-3.2

No.

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]>
(cherry picked from commit 79099cf)
Signed-off-by: Hyukjin Kwon <[email protected]>
  • Loading branch information
itholic authored and HyukjinKwon committed Feb 22, 2022
1 parent 32e7e7b commit 679a7e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ jobs:
- name: Install dependencies for documentation generation
run: |
apt-get install -y libcurl4-openssl-dev pandoc
python3.6 -m pip install "sphinx<3.5.0" mkdocs numpy
# Pin the MarkupSafe to 2.0.1 to resolve the CI error.
# See also https://issues.apache.org/jira/browse/SPARK-38279.
python3.6 -m pip install "sphinx<3.5.0" mkdocs numpy 'markupsafe==2.0.1'
apt-get update -y
apt-get install -y ruby ruby-dev
gem install jekyll jekyll-redirect-from rouge
Expand Down

0 comments on commit 679a7e1

Please sign in to comment.