You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make PyPI the default public install path, document the active Trusted Publishing release flow, and update the distribution policy guard test.
Tests: ruff check src/ tests/; python3 -m pytest tests/test_distribution_policy.py tests/test_versioning.py -q -p no:cacheprovider; python3 -m pytest -q -p no:cacheprovider
The package is published as GitHub release artifacts today. PyPI/package-index publishing is not active yet, so registry commands like `pip install github-repo-auditor` are not the recommended public path. See [docs/distribution.md](docs/distribution.md) for the current distribution policy.
141
+
The package is published on PyPI and through GitHub Releases. For normal CLI use,
142
+
install it as an isolated tool:
143
+
144
+
```bash
145
+
# uv (recommended)
146
+
uv tool install github-repo-auditor
147
+
148
+
# pipx
149
+
pipx install github-repo-auditor
150
+
```
142
151
143
152
Fastest no-clone path:
144
153
@@ -148,13 +157,10 @@ chmod +x audit.pyz
148
157
./audit.pyz --help
149
158
```
150
159
151
-
Install from the public GitHub source:
160
+
Install from the public GitHub source when you want the latest unreleased code:
0 commit comments