fonttools/setup.cfg
Cosimo Lupo 63fb3fb881
setup.cfg: mark wheel as non-universal, py3 only
I forgot to do this before releasing 4.0.0 -- but it's ok.
Even if wheel file name incorrectly says 'py2.py3', PyPI reads the metadata
from the package and returns the correct version of fonttools (3.44.0 vs 4.0)
depending on the version of the python interpreter used to run pip installer.
2019-08-22 16:40:08 +02:00

57 lines
1.2 KiB
INI

[bumpversion]
current_version = 4.0.1.dev0
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}"
[sdist]
formats = zip
[metadata]
license_file = LICENSE
[tool:pytest]
minversion = 3.0
testpaths =
Tests
python_files =
*_test.py
python_classes =
*Test
addopts =
-r a
--doctest-modules
--doctest-ignore-import-errors
--pyargs
doctest_optionflags =
ALLOW_UNICODE
ELLIPSIS
filterwarnings =
ignore:tostring:DeprecationWarning
ignore:fromstring:DeprecationWarning
ignore:readPlist:DeprecationWarning:plistlib_test
ignore:writePlist:DeprecationWarning:plistlib_test
ignore:some_function:DeprecationWarning:fontTools.ufoLib.utils
ignore::DeprecationWarning:fontTools.varLib.designspace