We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57aac8f commit 3617a39Copy full SHA for 3617a39
Makefile
@@ -22,6 +22,9 @@ endif
22
@echo "deploy: build and upload to PyPi"
23
@echo "tag: tag the repository with the current version\n"
24
25
+version:
26
+ @hatch version
27
+
28
install:
29
./install.sh --unstable
30
@@ -47,7 +50,7 @@ pytest:
47
50
nopost:
48
51
@bash check.sh --nopost
49
52
-tag:
53
+tag: version
54
git tag -a "v${LIBRARY_VERSION}" -m "Version ${LIBRARY_VERSION}"
55
56
build: check
tox.ini
@@ -20,7 +20,7 @@ commands =
20
python -m build --no-isolation
21
python -m twine check dist/*
isort --check .
- ruff .
+ ruff check .
codespell .
deps =
check-manifest
0 commit comments