File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -204,11 +204,15 @@ jobs:
204204 $content = $content -replace '^description = ".*"', 'description = "${{ matrix.features.package_description }}"'
205205 Set-Content -Path pyproject.toml -Value $content
206206
207+ - name : Set PYO3_CROSS_PYTHON_VERSION
208+ if : contains(matrix.platform.target, 'aarch64')
209+ shell : bash
210+ run : echo "PYO3_CROSS_PYTHON_VERSION=3.10" >> $GITHUB_ENV
211+
207212 - name : Build wheels
208213 uses : PyO3/maturin-action@v1
209214 env :
210215 NODE_OPTIONS : " --max-old-space-size=8192"
211- PYO3_CROSS_PYTHON_VERSION : ${{ contains(matrix.platform.target, 'aarch64') && '3.10' || '' }}
212216 with :
213217 target : ${{ matrix.platform.target }}
214218 args : --release --out dist --find-interpreter --features=${{ matrix.features.value }}
You can’t perform that action at this time.
0 commit comments