It seems that CI tries the two directories from site.getsitepackages(… #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows testing | |
on: | |
push: | |
# allow manual launch | |
workflow_dispatch: | |
jobs: | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
# 3.x is whatever latest. | |
python-version: '3.x' | |
- run: python -m pip install --pre skia-python | |
- run: python -c 'import sys; print(sys.path)' | |
- run: python -c 'import site; print(site.getsitepackages())' | |
- run: python -c 'import shutil, site; shutil.copy2("icudtl.dat", site.getsitepackages()[0])' | |
- run: python skparagraph-example.py |