We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pip
1 parent fbaded9 commit e9d82f0Copy full SHA for e9d82f0
.github/workflows/system.yml
@@ -53,7 +53,12 @@ jobs:
53
with:
54
python-version: ${{ matrix.python-version }}
55
architecture: ${{ matrix.architecture }}
56
- - run: python -m pip install --user numpy
+ - name: Install numpy
57
+ run: python -m pip install --user numpy
58
+ if: ${{ !(matrix.os == 'macos-latest' && matrix.architecture == 'x64') }}
59
+ - name: Install numpy (macOS x64 — run pip under Rosetta for x86_64 wheels)
60
+ run: arch -x86_64 python -m pip install --user numpy
61
+ if: ${{ matrix.os == 'macos-latest' && matrix.architecture == 'x64' }}
62
- run: python -m pip install virtualenv
63
- run: virtualenv --version
64
- name: Setup julia
0 commit comments