Skip to content

Commit

Permalink
check python version and module paths
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Oct 17, 2024
1 parent 0bfd03e commit 69ca615
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
if: ${{ matrix.package_manager == 'vcpkg' }}
run: |
pip show setuptools
python -c "import setuptools"
python --version
python -c 'import sys; import pprint; pprint.pprint(sys.path)'
python -c 'import setuptools'
- name: "(vcpkg only) Setup CMake Toolchain file"
if: ${{ matrix.package_manager == 'vcpkg' }}
Expand Down

0 comments on commit 69ca615

Please sign in to comment.