Commit 976213f
Fix CI: break shim<->main exact-pin lockstep
The `build wheel + sdist` job failed at the `pure-python-git[git]` smoke-install
with ResolutionImpossible: pure-python-git-shim 0.1.0 pinned
`pure-python-git==0.1.0`, which cannot coexist with the current main package.
The main `[git]` extra likewise exact-pinned the shim, so every main release
re-broke the extra.
Replace both exact pins with lower bounds (the shim only registers a `git`
console-script delegating to pythongit.cli:main, so it is version-independent):
- shim: pure-python-git>=0.1.0 (was ==0.1.0), bump 0.1.0 -> 0.1.1
- main `[git]` extra: pure-python-git-shim>=0.1.1 (was ==0.1.0), bump 1.0.0 -> 1.0.1
Verified locally: installing both wheels together resolves, `pygit` and the
`git` shim run, and uninstalling the shim removes `git` while keeping `pygit`.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 354f446 commit 976213f
2 files changed
Lines changed: 7 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
14 | 17 | | |
15 | 18 | | |
16 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
0 commit comments