2019-02-05 12:10:51 +00:00
|
|
|
[bumpversion]
|
2025-02-07 13:15:55 +00:00
|
|
|
current_version = 4.56.0
|
2019-02-05 12:10:51 +00:00
|
|
|
commit = True
|
|
|
|
tag = False
|
|
|
|
tag_name = {new_version}
|
|
|
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
|
|
|
|
serialize =
|
|
|
|
{major}.{minor}.{patch}.{release}{dev}
|
|
|
|
{major}.{minor}.{patch}
|
|
|
|
|
|
|
|
[bumpversion:part:release]
|
|
|
|
optional_value = final
|
|
|
|
values =
|
|
|
|
dev
|
|
|
|
final
|
|
|
|
|
|
|
|
[bumpversion:part:dev]
|
|
|
|
|
|
|
|
[bumpversion:file:Lib/fontTools/__init__.py]
|
|
|
|
search = __version__ = "{current_version}"
|
|
|
|
replace = __version__ = "{new_version}"
|
|
|
|
|
|
|
|
[bumpversion:file:setup.py]
|
|
|
|
search = version="{current_version}"
|
|
|
|
replace = version="{new_version}"
|
|
|
|
|
|
|
|
[metadata]
|
2023-05-10 18:25:06 +03:00
|
|
|
license_files = LICENSE
|
2019-02-05 12:10:51 +00:00
|
|
|
|
|
|
|
[tool:pytest]
|
2023-05-25 12:22:51 +01:00
|
|
|
minversion = 7.0.0
|
2019-02-05 12:10:51 +00:00
|
|
|
testpaths =
|
|
|
|
Tests
|
2020-05-15 10:42:59 +01:00
|
|
|
fontTools
|
2019-02-05 12:10:51 +00:00
|
|
|
python_files =
|
|
|
|
*_test.py
|
|
|
|
python_classes =
|
|
|
|
*Test
|
|
|
|
addopts =
|
|
|
|
-r a
|
|
|
|
--doctest-modules
|
|
|
|
--doctest-ignore-import-errors
|
|
|
|
--pyargs
|
|
|
|
doctest_optionflags =
|
|
|
|
ALLOW_UNICODE
|
|
|
|
ELLIPSIS
|
|
|
|
filterwarnings =
|
|
|
|
ignore:readPlist:DeprecationWarning:plistlib_test
|
|
|
|
ignore:writePlist:DeprecationWarning:plistlib_test
|
|
|
|
ignore:some_function:DeprecationWarning:fontTools.ufoLib.utils
|
|
|
|
ignore::DeprecationWarning:fontTools.varLib.designspace
|
2022-08-15 10:30:45 -06:00
|
|
|
markers =
|
2022-08-17 19:01:50 +02:00
|
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
2021-11-10 10:55:06 +00:00
|
|
|
|
|
|
|
[tool:interrogate]
|
|
|
|
ignore-semiprivate = true
|
|
|
|
ignore-private = true
|
|
|
|
ignore-nested-functions = true
|
|
|
|
ignore-regex = ^(from|to)XML$,^(de)?compile$
|
|
|
|
ignore-module = true
|