You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cookiecutter template puts the configuration for coverage, flake8, and yapf in setup.cfg.
However, setup.cfg is traditionally the setuptools config file. setuptools traditionally provided setuptools.config.read_configuration(), but the project is abandoning setup.cfg, and the tool is deprecated.
I haven't checked whether these specific tools have their own parsing or not. But, to avoid confusion or deprecation warnings (or ultimately errors), we should probably move the configuration for these tools to their own native config files.
The cookiecutter template puts the configuration for
coverage
,flake8
, andyapf
insetup.cfg
.However,
setup.cfg
is traditionally thesetuptools
config file.setuptools
traditionally providedsetuptools.config.read_configuration()
, but the project is abandoningsetup.cfg
, and the tool is deprecated.I haven't checked whether these specific tools have their own parsing or not. But, to avoid confusion or deprecation warnings (or ultimately errors), we should probably move the configuration for these tools to their own native config files.
The text was updated successfully, but these errors were encountered: