Commit 8973de8
fix: use --env-dev in CI so the dev conda environment is built
The CI install steps called `./install_shapepipe --develop`, but
`--develop` only adds dev pip extras into the *production* environment
(environment.yml). The flag that builds the dev conda env (shapepipe-dev,
from environment-dev.yml) is `--env-dev` — which also triggers the
`.[dev]` install on its own. The downstream test step already does
`conda activate shapepipe-dev`, an env the old flag never created.
Building production also failed to solve regardless: environment.yml pins
astropy==5.2 (py38–py311 builds only) against python=3.12, which is
unsatisfiable. That's a separate production-environment bug; this change
just points CI at the dev env it was always meant to use.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent eef503a commit 8973de8
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
| 55 | + | |
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
0 commit comments