`PyCall` throws `PyImport_ImportModule` on continuous integration systems

Miniforge (the default Python distribution installed by PyCall.jl) does not support 32-bit Windows. Perhaps you could try the setup-python action.

- uses: actions/setup-python@v2
  with:
    python-version: ${{ matrix.python-version }}
    architecture: arch: ${{ matrix.arch }}
- uses: julia-actions/setup-julia@v1
  with:
    version: ${{ matrix.julia-version }}
    arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
  env:
    # PYTHON: ""      # Python executable from the local miniconda distribution
    PYTHON: 'python'  # Python executable from setup-python action

1 Like