@@ -221,7 +221,8 @@ jobs:
221
221
run : |
222
222
# Confirm the python module loads. Query the site-packages directory and substitute ../_install
223
223
export PYTHONPATH=`python -c "import site; print('../_install%s' % site.USER_SITE[len(site.USER_BASE):])"`
224
- export PYTHONPATH=$PYTHONPATH:$PWD/../_install/lib/python*/site-packages
224
+ export PYTHONPATH=$PYTHONPATH:$PWD/../_install/lib*/python*/site-packages
225
+ echo $PYTHONPATH
225
226
python -c "import imath;print(imath.__version__)"
226
227
# Make sure we can build the tests when configured as a
227
228
# standalone application linking against the just-installed
@@ -345,7 +346,8 @@ jobs:
345
346
mkdir _examples
346
347
- name : Install Dependences
347
348
run : |
348
- brew --display-times -q install python
349
+ brew list --version
350
+ brew install --display-times -q boost-python3
349
351
# # share/ci/scripts/macos/install_boost.sh
350
352
# # shell: bash
351
353
- name : Configure
@@ -370,6 +372,8 @@ jobs:
370
372
run : |
371
373
# Confirm the python module loads. Query the site-packages directory and substitute ../_install
372
374
export PYTHONPATH=`python -c "import site; print('../_install%s' % site.USER_SITE[len(site.USER_BASE):])"`
375
+ export PYTHONPATH=$PYTHONPATH:$PWD/../_install/lib/python*/site-packages
376
+ echo $PYTHONPATH
373
377
python -c "import imath;print(imath.__version__)"
374
378
# Make sure we can build the tests when configured as a
375
379
# standalone application linking against the just-installed
@@ -526,7 +530,7 @@ jobs:
526
530
shell : bash
527
531
- name : Install Dependencies
528
532
run : |
529
- time vcpkg install boost-thread :x64-windows
533
+ vcpkg install boost-python :x64-windows
530
534
# share/ci/scripts/windows/install_python.ps1 ${{ matrix.python-version }} $HOME
531
535
# share/ci/scripts/windows/install_boost.ps1 ${{ matrix.boost-version }} $HOME 3.8
532
536
# shell: powershell
0 commit comments