Problem
The root poetry.lock file has makim==1.27.0 and xonsh==0.19.9 pinned.
During CI, Poetry installs from the lock file and downgrades xonsh from
0.22.8 to 0.19.9, which causes a conflict and breaks all 18 CI checks.
Evidence
From the CI logs:
- Downgrading makim (1.29.0 -> 1.27.0)
- Downgrading xonsh (0.22.8 -> 0.19.9)
- Error: Process completed with exit code 1
Suggested Fix
Update makim to >=1.29.0 in the root pyproject.toml and regenerate
poetry.lock so xonsh is pinned to 0.22.8 or higher.
Problem
The root
poetry.lockfile hasmakim==1.27.0andxonsh==0.19.9pinned.During CI, Poetry installs from the lock file and downgrades xonsh from
0.22.8 to 0.19.9, which causes a conflict and breaks all 18 CI checks.
Evidence
From the CI logs:
Suggested Fix
Update makim to >=1.29.0 in the root pyproject.toml and regenerate
poetry.lock so xonsh is pinned to 0.22.8 or higher.