mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
project maintenance updates
This commit is contained in:
parent
b27207d1ff
commit
8ab1644962
8 changed files with 27 additions and 27 deletions
14
setup.cfg
14
setup.cfg
|
|
@ -19,7 +19,7 @@ warn_redundant_casts = True
|
|||
|
||||
|
||||
[tool:isort]
|
||||
known_first_party = pycalver,pycalver2
|
||||
known_first_party = pycalver
|
||||
known_third_party = click,pathlib2,lexid
|
||||
force_single_line = True
|
||||
length_sort = True
|
||||
|
|
@ -83,9 +83,6 @@ exclude =
|
|||
dist/
|
||||
.mypy_cache
|
||||
|
||||
# Hopefully this can be resolved, so D404, D405 start working
|
||||
# https://github.com/PyCQA/pydocstyle/pull/188
|
||||
|
||||
|
||||
[tool:pytest]
|
||||
addopts = --doctest-modules
|
||||
|
|
@ -93,7 +90,7 @@ addopts = --doctest-modules
|
|||
|
||||
[pycalver]
|
||||
current_version = "v202010.1040-beta"
|
||||
version_pattern = "vYYYY0M.BUILD[-RELEASE[NUM]]"
|
||||
version_pattern = "vYYYY0M.BUILD[-RELEASE]"
|
||||
commit_message = "bump {old_version} -> {new_version}"
|
||||
commit = True
|
||||
tag = True
|
||||
|
|
@ -109,7 +106,7 @@ setup.py =
|
|||
src/pycalver/__init__.py =
|
||||
__version__ = "{version}"
|
||||
src/pycalver/__main__.py =
|
||||
click.version_option(version="{version}")
|
||||
@click.version_option(version="{version}")
|
||||
src/pycalver*/*.py =
|
||||
Copyright (c) 2018-YYYY
|
||||
LICENSE =
|
||||
|
|
@ -126,8 +123,7 @@ README.md =
|
|||
score = no
|
||||
reports = no
|
||||
|
||||
# pylint spams the same message multiple times if jobs > 1
|
||||
jobs = 1
|
||||
jobs = 4
|
||||
|
||||
# Set the output format. Available formats are text, parseable, colorized,
|
||||
# msvs (visual studio) and html. You can also give a reporter class, eg
|
||||
|
|
@ -154,6 +150,8 @@ ignore-comments=yes
|
|||
ignore-docstrings=yes
|
||||
ignore-imports=yes
|
||||
|
||||
ignored-argument-names=args|kwargs
|
||||
|
||||
# https://pylint.pycqa.org/en/stable/technical_reference/features.html
|
||||
disable =
|
||||
bad-continuation,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue