Skip to content

Commit

Permalink
Work around Windows CI issue with Python 3.11 (#207)
Browse files Browse the repository at this point in the history
Workaround Windows CI WordCloud issue
  • Loading branch information
rocky authored Aug 4, 2024
1 parent 3bf1275 commit 16a3f51
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
python -m pip install wheel
choco install llvm nodejs
set LLVM_DIR="C:\Program Files\LLVM"
- name: Install Python dependencies
run: |
# Can adjust when next Mathics is released
Expand All @@ -44,7 +45,9 @@ jobs:
cp node_modules/\@mathicsorg/mathics-threejs-backend/package.json mathics_d
- name: Test Mathics3 Django
run: |
# Until we can't figure out what's up with TextRecognize:
make pytest gstest
make doctest o="--exclude TextRecognize,PythonCProfileEvaluation"
# import WordCloud fails with:
# DLL load failed wile importing _c_interal_utils
# Until we can't figure out what's up with TextRecognize:
make doctest o="--exclude TextRecognize,PythonCProfileEvaluation,WordCloud"
# make check

0 comments on commit 16a3f51

Please sign in to comment.