File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,10 @@ all: develop
2424develop :
2525 $(PIP ) install -e .$(PIP_INSTALL_OPTS )
2626
27- # : Install timed_threads
27+ dist :
28+ $(PYTHON ) -m build --sdist
29+
30+ # : Install development version of timed_threads
2831install :
2932 $(PYTHON ) -m pip install -e .
3033
@@ -46,7 +49,11 @@ pytest:
4649rmChangeLog :
4750 $(RM ) ChangeLog || true
4851
52+ # : Create ChangeLog from version control without corrections
53+ ChangeLog-without-corrections :
54+ git log --pretty --numstat --summary | $(GIT2CL ) > ChangeLog
55+
4956# : Create a ChangeLog from git via git log and git2cl
5057ChangeLog : rmChangeLog
51- git log --pretty --numstat --summary | $( GIT2CL ) > $@
52- patch -p0 ChangeLog < ChangeLog-spell-corrected.diff
58+ ChangeLog-without-corrections
59+ patch ChangeLog < ChangeLog-spell-corrected.diff
Original file line number Diff line number Diff line change 44# well as importing into Python. That's why there is no
55# space around "=" below.
66# fmt: off
7- __version__ = "2.0.0dev0 " # noqa
7+ __version__ = "2.0.0 " # noqa
You can’t perform that action at this time.
0 commit comments