Skip to content

Commit 16a3f51

Browse files
authored
Work around Windows CI issue with Python 3.11 (#207)
Workaround Windows CI WordCloud issue
1 parent 3bf1275 commit 16a3f51

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/windows.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
python -m pip install wheel
2626
choco install llvm nodejs
2727
set LLVM_DIR="C:\Program Files\LLVM"
28+
2829
- name: Install Python dependencies
2930
run: |
3031
# Can adjust when next Mathics is released
@@ -44,7 +45,9 @@ jobs:
4445
cp node_modules/\@mathicsorg/mathics-threejs-backend/package.json mathics_d
4546
- name: Test Mathics3 Django
4647
run: |
47-
# Until we can't figure out what's up with TextRecognize:
4848
make pytest gstest
49-
make doctest o="--exclude TextRecognize,PythonCProfileEvaluation"
49+
# import WordCloud fails with:
50+
# DLL load failed wile importing _c_interal_utils
51+
# Until we can't figure out what's up with TextRecognize:
52+
make doctest o="--exclude TextRecognize,PythonCProfileEvaluation,WordCloud"
5053
# make check

0 commit comments

Comments
 (0)