Commit 1878082
authored
[macOS CI] Bump pinned conda to 26.5.3 to fix osx-arm64 nightly builds (base env now Python 3.14) (#8284)
## Summary
macOS (osx-arm64) nightly wheel builds for the domains (e.g.
torchvision) have failed every night since **2026-07-09** in the
`setup-binary-builds` action. Linux, aarch64-Linux, and Windows are
unaffected.
The macOS binary-build runners' **base** miniconda env now has
`python=3.14` pinned. `conda install -y conda=25.3.0` is unsatisfiable
there because `conda=25.3.0` has no Python 3.14 build (defaults-channel
builds only cover py3.9–3.13; **26.1.0** is the first release with a
`py314` build):
```
LibMambaUnsatisfiableError: Encountered problems while solving:
- package conda-25.3.0-py310hca03da5_0 requires python >=3.10,<3.11.0a0, but none of the providers can be installed
...
Pins seem to be involved in the conflict. Currently pinned specs:
- python=3.14
```
This step runs in the `base` env *before* the target env is created,
which is why **all** Python versions failed identically and only
osx-arm64 was affected.
## Fix
Bump the pinned conda to `26.5.3` (verified available on `linux-64`,
`linux-aarch64`, `osx-arm64`, `win-64`).
## Test plan
- Verified `conda=26.5.3` has a `py314` build on `osx-arm64` and exists
on all four platforms that run this action.
- Windows/Linux keep passing (they were already green); this only
unblocks the osx-arm64 base env that moved to Python 3.14.1 parent 19fb23c commit 1878082
1 file changed
Lines changed: 10 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
133 | 142 | | |
134 | 143 | | |
135 | 144 | | |
| |||
0 commit comments