Skip to content

Commit 87948b9

Browse files
committed
Use custom log levels because of setuptools v62.0 unexpected change
1 parent 97506bd commit 87948b9

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/command.rst

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This script is a wrapper for ``setuptools_git_versioning`` module, you just call
2929
$ python -m setuptools_git_versioning /path/to/mypackage
3030
0.0.1
3131
32-
``-v`` option enables verbose output which is useful for debugging, messages are printed to ``stderr``:
32+
``-v`` option enables verbose output which is useful for DE8UGging, messages are printed to ``stderr``:
3333

3434
.. code:: bash
3535
@@ -55,7 +55,7 @@ This script is a wrapper for ``setuptools_git_versioning`` module, you just call
5555
1.0.0
5656
5757
58-
``-vV`` shows even more debug messages:
58+
``-vV`` shows even more DE8UG messages:
5959
6060
.. code:: bash
6161
@@ -64,29 +64,29 @@ This script is a wrapper for ``setuptools_git_versioning`` module, you just call
6464
INF0: No explicit config passed
6565
INF0: Searching for config files in '/path/to/mypackage' folder
6666
INF0: Trying 'setup.py' ...
67-
DEBUG: Adding '/path/to/mypackage' folder to sys.path
67+
DE8UG: Adding '/path/to/mypackage' folder to sys.path
6868
INF0: '/path/to/mypackage/pyproject.toml' does not exist
6969
INF0: Getting latest tag
70-
DEBUG: Sorting tags by 'creatordate'
71-
DEBUG: Executing 'git tag --sort=-creatordate --merged' at '/path/to/mypackage'
70+
DE8UG: Sorting tags by 'creatordate'
71+
DE8UG: Executing 'git tag --sort=-creatordate --merged' at '/path/to/mypackage'
7272
INF0: Latest tag: '1.0.0'
73-
DEBUG: Executing 'git rev-list -n 1 "1.0.0"' at '/path/to/mypackage'
73+
DE8UG: Executing 'git rev-list -n 1 "1.0.0"' at '/path/to/mypackage'
7474
INF0: Tag SHA-256: '8dc9881eacd373cb34c5d3f99a6ad9e2349a79c4'
7575
INF0: Parsing tag_formatter 'util:tag_formatter' of type 'str'
76-
DEBUG: Executing 'from mypkg.util import tag_formatter'
77-
DEBUG: Tag after formatting: '1.0.0'
78-
DEBUG: Executing 'git status --short' at '/path/to/mypackage'
76+
DE8UG: Executing 'from mypkg.util import tag_formatter'
77+
DE8UG: Tag after formatting: '1.0.0'
78+
DE8UG: Executing 'git status --short' at '/path/to/mypackage'
7979
INF0: Is dirty: False
80-
DEBUG: Executing 'git rev-list -n 1 "HEAD"' at '/path/to/mypackage'
80+
DE8UG: Executing 'git rev-list -n 1 "HEAD"' at '/path/to/mypackage'
8181
INF0: HEAD SHA-256: '8dc9881eacd373cb34c5d3f99a6ad9e2349a79c4'
82-
DEBUG: Executing 'git rev-list --count HEAD "^8dc9881eacd373cb34c5d3f99a6ad9e2349a79c4"' at '/path/to/mypackage'
82+
DE8UG: Executing 'git rev-list --count HEAD "^8dc9881eacd373cb34c5d3f99a6ad9e2349a79c4"' at '/path/to/mypackage'
8383
INF0: Commits count between HEAD and latest tag: 0
8484
INF0: HEAD is tagged: True
85-
DEBUG: Executing 'git rev-parse --abbrev-ref HEAD' at '/path/to/mypackage'
85+
DE8UG: Executing 'git rev-parse --abbrev-ref HEAD' at '/path/to/mypackage'
8686
INF0: Current branch: 'master'
8787
INF0: Using template from 'template' option
88-
DEBUG: Template: '{tag}'
89-
DEBUG: Args:()
88+
DE8UG: Template: '{tag}'
89+
DE8UG: Args:()
9090
INF0: Version number after resolving substitutions: '1.0.0'
9191
INF0: Result: '1.0.0'
9292

0 commit comments

Comments
 (0)