From ce76a7c27b282cd2b1f692fbe6cb46b3d64891ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 16 Jun 2021 12:42:33 +0200 Subject: Fix setup.py warning Fix the following warning: /usr/lib/python3.10/site-packages/setuptools/dist.py:691: UserWarning: Usage of dash-separated 'force-manifest' will not be supported in future versions. Please use the underscore name 'force_manifest' instead --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 8366e85..a751016 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [sdist] -force-manifest = 1 +force_manifest = 1 -- cgit v1.2.1