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 62b61ae commit 5bd7b3fCopy full SHA for 5bd7b3f
Makefile
@@ -1,18 +1,24 @@
1
-.PHONY: all version v test t dist d clean c
+.PHONY: all version v test t install i build b dist d clean c
2
3
-all: test version
+all: clean test install build version
4
5
version v:
6
- git describe --tags
+ git describe --tags ||:
7
python -m setuptools_scm
8
9
test t:
10
pytest --cov=src/cedarscript_editor --cov=src/text_manipulation tests/ --cov-report term-missing
11
12
-dist d: test
+install i:
13
+ pip install -e .
14
+
15
+build b:
16
+ # SETUPTOOLS_SCM_PRETEND_VERSION=0.0.1
17
+ python -m build
18
19
+dist d: clean test build
20
scripts/check-version.sh
- rm -rf dist/
- python -m build && twine upload dist/*
21
+ twine upload dist/*
22
23
clean c:
24
rm -rfv out dist build/bdist.*
0 commit comments