Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work around Windows CI issue with Python 3.11 #207

Merged
merged 1 commit into from
Aug 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading