Skip to content

Fix setup.cfg deprecation warnings

Angus Stewart requested to merge fix-setup-cfg into master

When building (from scratch), we get the following warnings (courtesy of @CraigNewlands):

--- stderr: eufs_tracks
/home/craig/.local/lib/python3.8/site-packages/setuptools/dist.py:717: UserWarning: Usage of dash-separated 'script-dir' will not be supported in future versions. Please use the underscore name 'script_dir' instead
warnings.warn(
/home/craig/.local/lib/python3.8/site-packages/setuptools/dist.py:717: UserWarning: Usage of dash-separated 'install-scripts' will not be supported in future versions. Please use the underscore name 'install_scripts' instead
warnings.warn(

This MR fixes these warnings.

Merge request reports