From ca5d04068b9935a1333ad812746c3ddc2181bcd2 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 12 Feb 2025 12:41:54 +0000 Subject: [PATCH] Fix deprecated spelling of license_file in setup.cfg setuptools was producing the following warning: Usage of dash-separated 'license-file' will not be supported in future versions. Please use the underscore name 'license_file' instead. By 2025-Mar-03, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 6372926..0c9e0fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -license-file = LICENSE +license_file = LICENSE