Commit 5ef6038
authored
Skip mypy on PyPy to avoid librt compilation issues (#1086)
* Skip mypy on PyPy to avoid librt compilation issues
mypy's mypyc-compiled dependencies (librt) use CPython internal
structures that don't exist in PyPy, causing compilation failures.
Fixes test environment installation on PyPy.
* Fix CI: unset HATCH_ENV for check_release, use direct version-cmd
Two issues:
1. Global HATCH_ENV=cov caused 'hatch version' to fail with
'Environment cov is not a builder environment' in check_release
2. Added explicit version-cmd to .jupyter-releaser.toml for robustness
* Remove version-cmd, use default hatch version
version-cmd is for bumping, not reading. With HATCH_ENV unset,
hatch version works correctly for both reading and bumping.1 parent 275ffac commit 5ef6038
2 files changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
| 23 | + | |
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
0 commit comments