Commit 7e971c7
committed
Disable satisfied-skip-solve on 32-bit linux
The default install of Conda on 32 bit linux uses repo.anaconda.com/miniconda; those 32 bit builds are very dated and so do not support the --satisfied-skip-solve flag
The latest 32 bit linux build (https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86.sh) is 4.5.12, which pre-dates the introduction of --satisfied-skip-solve, which was introduced in 4.6.0 (https://docs.conda.io/projects/conda/en/latest/release-notes.html\#version-4.6.0).
This is a somewhat draconian approach, as someone could have a newer build of Conda on a 32 bit linux system, and this change prevents them from using --satisfied-skip-solve.
Even so, I think this change is worthwhile because (a) the current state means a default install of PyCall (which sets this flag) on 32 bit linux fails (b) preventing --satisfied-skip-solve does not change correctness, just performance (c) there are probably not a lot of people hitting this code path.1 parent f1f4760 commit 7e971c7
1 file changed
+18
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
329 | 329 | | |
330 | 330 | | |
331 | 331 | | |
332 | | - | |
| 332 | + | |
333 | 333 | | |
334 | | - | |
335 | | - | |
336 | | - | |
337 | | - | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
338 | 351 | | |
339 | 352 | | |
340 | 353 | | |
| |||
0 commit comments