Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tsoc
hg-misc-tools
Commits
c298f9ff
Commit
c298f9ff
authored
Feb 27, 2026
by
one
Browse files
[hytop] Update readme
parent
2ecc1d16
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
5 deletions
+21
-5
projects/hytop/Makefile
projects/hytop/Makefile
+1
-5
projects/hytop/README.md
projects/hytop/README.md
+20
-0
No files found.
projects/hytop/Makefile
View file @
c298f9ff
.PHONY
:
help setup format lint test clean bump build
publish
.PHONY
:
help setup format lint test clean bump build
help
:
@
echo
"Available targets:"
...
...
@@ -9,7 +9,6 @@ help:
@
echo
" make clean - Remove build caches and the virtual environment"
@
echo
" make bump part=X - Bump version (patch/minor/major or set X.Y.Z)"
@
echo
" make build - Build wheel and sdist into dist/"
@
echo
" make publish - Upload dist/ to PyPI (requires UV_PUBLISH_TOKEN)"
setup
:
@
echo
">> Initializing virtual environment and installing dependencies..."
...
...
@@ -38,6 +37,3 @@ bump:
build
:
uv build
publish
:
uv publish
projects/hytop/README.md
View file @
c298f9ff
...
...
@@ -134,3 +134,23 @@ make bump part=minor # 0.1.1 -> 0.2.0
make bump
part
=
major
# 0.2.0 -> 1.0.0
make bump
part
=
"set 1.2.3"
# set an explicit version
```
### Publish
Releases are automatically published to PyPI when pushing a version tag:
```
bash
# Bump version and commit
make bump
part
=
patch
git commit
-am
"Bump version to 0.1.1"
# Tag and push to trigger GitHub Actions release
git tag hytop-0.1.1
git push origin hytop-0.1.1
```
To test building distributions locally:
```
bash
make build
```
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment